diff --git a/src/llconclientdlg.cpp b/src/llconclientdlg.cpp index 8082900e..b5887fb9 100755 --- a/src/llconclientdlg.cpp +++ b/src/llconclientdlg.cpp @@ -269,6 +269,9 @@ CLlconClientDlg::CLlconClientDlg ( CClient* pNCliP, // init reverb channel UpdateRevSelection(); + // set window title (with no clients connected -> "0") + SetMyWindowTitle ( 0 ); + // connect on startup --- if ( bNewConnectOnStartup ) diff --git a/src/util.cpp b/src/util.cpp index 19e072f1..91a86f24 100755 --- a/src/util.cpp +++ b/src/util.cpp @@ -349,6 +349,9 @@ CAboutDlg::CAboutDlg ( QWidget* parent ) : QDialog ( parent ) // set version number in about dialog lblVersion->setText ( GetVersionAndNameStr() ); + + // set window title + setWindowTitle ( tr ( "About " ) + APP_NAME ); } QString CAboutDlg::GetVersionAndNameStr ( const bool bWithHtml )