mainwindow.cpp
changeset 91 855c486b9360
parent 90 10f3d35dcbad
child 93 31c6ce8efbc7
     1.1 --- a/mainwindow.cpp	Sat Feb 19 17:14:33 2005 +0000
     1.2 +++ b/mainwindow.cpp	Mon Feb 28 16:22:29 2005 +0000
     1.3 @@ -297,12 +297,12 @@
     1.4  	// Keycodes:  /usr/lib64/qt3/include/qnamespace.h
     1.5  
     1.6      QAction *a;
     1.7 -    a = new QAction( tr( "New map" ), QPixmap( filenew_xpm ), tr( "&New..." ), CTRL + Key_N, this, "fileNew" );
     1.8 +    a = new QAction( tr( "New map","File menu" ), QPixmap( filenew_xpm ), tr( "&New..." ), CTRL + Key_N, this, "fileNew" );
     1.9      connect( a, SIGNAL( activated() ), this, SLOT( fileNew() ) );
    1.10      a->addTo( tb );
    1.11      a->addTo( menu );
    1.12  	
    1.13 -    a = new QAction( tr( "Open" ), QPixmap( fileopen_xpm), tr( "&Open..." ), CTRL + Key_O, this, "fileOpen" );
    1.14 +    a = new QAction( tr( "Open","File menu" ), QPixmap( fileopen_xpm), tr( "&Open..." ), CTRL + Key_O, this, "fileOpen" );
    1.15      connect( a, SIGNAL( activated() ), this, SLOT( fileLoad() ) );
    1.16      a->addTo( tb );
    1.17      a->addTo( menu );
    1.18 @@ -698,7 +698,7 @@
    1.19      //menuBar()->insertItem( tr( "&Mode (using modifiers)" ), menu );
    1.20  
    1.21      QToolBar *tb = new QToolBar( this );
    1.22 -    tb->setLabel( "Modes (using modifiers)" );
    1.23 +    tb->setLabel( tr ("Modes when using modifiers") );
    1.24      QAction *a;
    1.25  	actionGroupModModes=new QActionGroup ( this, "formatLinkStyles");
    1.26  	actionGroupModModes->setExclusive (true);