diff options
author | Timothy Pearson <[email protected]> | 2011-08-09 22:25:47 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-08-09 22:25:47 -0500 |
commit | eaa7ee2e0bbca40ba3173c4304f81957e8964291 (patch) | |
tree | 4f793aa48a5080aedc94ce6e519c3b86708f2b88 /tqtinterface/qt4/tools/designer/plugins/wizards/mainwindowwizard.ui.h | |
parent | 79a9d7a46a20d4a0923bc06fc471fdc2176ef865 (diff) | |
download | experimental-eaa7ee2e0bbca40ba3173c4304f81957e8964291.tar.gz experimental-eaa7ee2e0bbca40ba3173c4304f81957e8964291.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
Diffstat (limited to 'tqtinterface/qt4/tools/designer/plugins/wizards/mainwindowwizard.ui.h')
-rw-r--r-- | tqtinterface/qt4/tools/designer/plugins/wizards/mainwindowwizard.ui.h | 12 |
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 += "()"; |