diff options
Diffstat (limited to 'src/kreplacements')
-rw-r--r-- | src/kreplacements/kreplacements.cpp | 6 | ||||
-rw-r--r-- | src/kreplacements/kreplacements.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/kreplacements/kreplacements.cpp b/src/kreplacements/kreplacements.cpp index a9df56a..eb27f86 100644 --- a/src/kreplacements/kreplacements.cpp +++ b/src/kreplacements/kreplacements.cpp @@ -708,10 +708,10 @@ KAction* KStdAction::help( TQWidget* tqparent, const char* slot, KActionCollecti if(p) a->addTo( p->helpMenu ); return a; } -KAction* KStdAction::tqfind( TQWidget* tqparent, const char* slot, KActionCollection* actionCollection) +KAction* KStdAction::find( TQWidget* tqparent, const char* slot, KActionCollection* actionCollection) { KMainWindow* p = actionCollection->m_pMainWindow; - KAction* a = new KAction( i18n("Find"), TQt::CTRL+TQt::Key_F, tqparent, slot, actionCollection, "tqfind", false, false ); + KAction* a = new KAction( i18n("Find"), TQt::CTRL+TQt::Key_F, tqparent, slot, actionCollection, "find", false, false ); if(p) a->addTo( p->editMenu ); return a; } @@ -1021,7 +1021,7 @@ KApplication::KApplication() { if ( s_argv[i][0]=='-' ) // An option { - if ( ignorableCmdLineOptions.tqcontains(TQString(s_argv[i])+";") ) + if ( ignorableCmdLineOptions.contains(TQString(s_argv[i])+";") ) continue; // Find the option int j=0; diff --git a/src/kreplacements/kreplacements.h b/src/kreplacements/kreplacements.h index be7f126..3b807d8 100644 --- a/src/kreplacements/kreplacements.h +++ b/src/kreplacements/kreplacements.h @@ -259,7 +259,7 @@ public: static KAction* about( TQWidget* tqparent, const char* slot, KActionCollection* ); static KAction* aboutTQt( KActionCollection* ); static KAction* help( TQWidget* tqparent, const char* slot, KActionCollection* ); - static KAction* tqfind( TQWidget* tqparent, const char* slot, KActionCollection* ); + static KAction* find( TQWidget* tqparent, const char* slot, KActionCollection* ); static KAction* findNext( TQWidget* tqparent, const char* slot, KActionCollection* ); static KAction* keyBindings( TQWidget* tqparent, const char* slot, KActionCollection* ); }; |