diff -r 549bb67a8ab2 -r 866f79dfa6d7 texteditor.cpp --- a/texteditor.cpp Mon May 08 13:25:46 2006 +0000 +++ b/texteditor.cpp Mon May 08 13:25:46 2006 +0000 @@ -325,7 +325,7 @@ QToolBar *tb = new QToolBar( this ); tb->setLabel( "Format Actions" ); QPopupMenu *menu = new QPopupMenu( this ); - menuBar()->insertItem( tr( "&Format" ), menu ); + menuBar()->insertItem( tr( "F&ormat" ), menu ); QAction *a; @@ -374,7 +374,7 @@ actionTextItalic->addTo( tb ); actionTextItalic->addTo( menu ); actionTextItalic->setToggleAction( true ); - actionTextUnderline = new QAction( QPixmap (iconPath+"text_italic.png"), tr( "&Underline" ), CTRL + Key_U, this, "textUnderline" ); + actionTextUnderline = new QAction( QPixmap (iconPath+"text_under.png"), tr( "&Underline" ), CTRL + Key_U, this, "textUnderline" ); connect( actionTextUnderline, SIGNAL( activated() ), this, SLOT( textUnderline() ) ); actionTextUnderline->addTo( tb ); actionTextUnderline->addTo( menu );