summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/tools/designer/plugins/wizards/mainwindowwizard.ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'tqtinterface/qt4/tools/designer/plugins/wizards/mainwindowwizard.ui.h')
-rw-r--r--tqtinterface/qt4/tools/designer/plugins/wizards/mainwindowwizard.ui.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/tqtinterface/qt4/tools/designer/plugins/wizards/mainwindowwizard.ui.h b/tqtinterface/qt4/tools/designer/plugins/wizards/mainwindowwizard.ui.h
index 3865d12..5c3a29c 100644
--- a/tqtinterface/qt4/tools/designer/plugins/wizards/mainwindowwizard.ui.h
+++ b/tqtinterface/qt4/tools/designer/plugins/wizards/mainwindowwizard.ui.h
@@ -156,7 +156,7 @@ void MainWindowWizardBase::accept()
getPixmap( "editpaste", pix );
TQAction *editPasteAction = dfw->createAction( tr( "Paste" ), pix, tr( "&Paste" ), CTRL + Key_V, 0, "editPasteAction" );
actions.insert( tr( "Paste" ), editPasteAction );
- getPixmap( "searchtqfind", pix );
+ getPixmap( "searchfind", pix );
TQAction *editFindAction = dfw->createAction( tr( "Find" ), pix, tr( "&Find..." ), CTRL + Key_F, 0, "editFindAction" );
actions.insert( tr( "Find" ), editFindAction );
@@ -236,19 +236,19 @@ void MainWindowWizardBase::accept()
dfw->addToolBarSeparator( "toolBar" );
continue;
}
- TQAction *a = actions.tqfind( listToolbar->text( i ) );
+ TQAction *a = actions.find( listToolbar->text( i ) );
if ( !a )
continue;
dfw->addToolBarAction( "toolBar", a );
dfw->addAction( a );
- if ( usedActions.tqfindRef( a ) == -1 )
+ if ( usedActions.findRef( a ) == -1 )
usedActions.append( a );
}
}
for ( TQAction *ac = usedActions.first(); ac; ac = usedActions.next() ) {
- if ( TQString( ac->name() ).tqfind( "file" ) != -1 && checkCreateConnectionsFile->isChecked() ||
- TQString( ac->name() ).tqfind( "edit" ) != -1 && checkCreateConnectionsEdit->isChecked() ||
- TQString( ac->name() ).tqfind( "help" ) != -1 && checkCreateConnectionsHelp->isChecked() ) {
+ if ( TQString( ac->name() ).find( "file" ) != -1 && checkCreateConnectionsFile->isChecked() ||
+ TQString( ac->name() ).find( "edit" ) != -1 && checkCreateConnectionsEdit->isChecked() ||
+ TQString( ac->name() ).find( "help" ) != -1 && checkCreateConnectionsHelp->isChecked() ) {
TQString slot = ac->name();
slot.remove( slot.length() - 6, 6 );
slot += "()";