From b52abb49130bea9cbc7e6d1e4b1a142da3c1815e Mon Sep 17 00:00:00 2001 From: ruglory Date: Thu, 5 Feb 2009 03:20:33 +0000 Subject: [PATCH] Main window title is added Prepared for 0.7 release git-svn-id: https://svn.code.sf.net/p/qlscribe/svn/trunk@59 cac9541e-1b8d-4bfa-827e-589bba606050 --- src/mainwindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 23af7ef..96e8ca4 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -46,6 +46,7 @@ MainWindow::MainWindow( bool enablePrint ) m_insertMapper( new QSignalMapper( this ) ), m_newLabelMapper( new QSignalMapper( this ) ) { + setWindowTitle( tr( "Qt lightScribe", "Main window title \"Qt lightScribe\"" ) ); setCentralWidget( m_mdiArea ); m_menuFile = menuBar()->addMenu( tr( "File", "Menu item \"File\"" ) ); @@ -332,7 +333,7 @@ void MainWindow::onMenuAbout() QMessageBox::about( this, tr( "About" ), tr( "

qlscribe - Qt lisghtScribe

" - "

release 0.6 $Revision$

" + "

release 0.7 $Revision$

" "

visit project at home page " "qlscribe.sourceforge.net

" ) ); }