diff -r 608f976aa7bb -r 6a0342b3c519 texteditor.cpp --- a/texteditor.cpp Tue Jun 06 14:58:11 2006 +0000 +++ b/texteditor.cpp Tue Jun 13 08:49:12 2006 +0000 @@ -26,7 +26,7 @@ //Added by qt3to4: #include #include -#include +#include #include #include @@ -416,7 +416,7 @@ actionTextUnderline->setToggleAction( true ); menu->insertSeparator(); - Q3ActionGroup *grp = new Q3ActionGroup( this ); + QActionGroup *grp = new QActionGroup( this ); connect( grp, SIGNAL( selected( QAction* ) ), this, SLOT( textAlign( QAction* ) ) ); actionAlignLeft = new QAction( QPixmap (iconPath+"text_left.png"), tr( "&Left" ),grp ); @@ -435,7 +435,7 @@ grp->addTo( tb ); grp->addTo( menu ); - Q3ActionGroup *grp2 = new Q3ActionGroup( this ); + QActionGroup *grp2 = new QActionGroup( this ); grp2->setExclusive(false); actionAlignSubScript = new QAction( QPixmap (iconPath+"text_sub.png"), tr( "Subs&cript" ),grp2 ); actionAlignSubScript->setShortcut( Qt::CTRL + Qt::SHIFT + Qt::Key_B );