set correct window title

This commit is contained in:
Volker Fischer 2013-02-17 21:26:29 +00:00
parent d4f00da713
commit ee8524aa11
2 changed files with 6 additions and 0 deletions

View file

@ -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 )

View file

@ -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 )