diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-08-09 22:25:47 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-08-09 22:25:47 -0500 |
commit | eaa7ee2e0bbca40ba3173c4304f81957e8964291 (patch) | |
tree | 4f793aa48a5080aedc94ce6e519c3b86708f2b88 /tqtinterface/qt4/src/dialogs/tqwizard.cpp | |
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/src/dialogs/tqwizard.cpp')
-rw-r--r-- | tqtinterface/qt4/src/dialogs/tqwizard.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tqtinterface/qt4/src/dialogs/tqwizard.cpp b/tqtinterface/qt4/src/dialogs/tqwizard.cpp index c14b2cb..93c3173 100644 --- a/tqtinterface/qt4/src/dialogs/tqwizard.cpp +++ b/tqtinterface/qt4/src/dialogs/tqwizard.cpp @@ -67,7 +67,7 @@ A wizard is a special type of input dialog that consists of a sequence of dialog pages. A wizard's purpose is to walk the user through a process step by step. Wizards are useful for complex or - infrequently occurring tasks that people may tqfind difficult to + infrequently occurring tasks that people may find difficult to learn or do. TQWizard provides page titles and displays Next, Back, Finish, @@ -318,7 +318,7 @@ void TQWizard::insertPage( TQWidget * page, const TQString & title, int index ) \fn void TQWizard::selected(const TQString&) This signal is emitted when the current page changes. The - parameter tqcontains the title of the selected page. + parameter contains the title of the selected page. */ @@ -377,7 +377,7 @@ int TQWizard::indexOf( TQWidget* page ) const TQWizardPrivate::Page * p = d->page( page ); if ( !p ) return -1; - return d->pages.tqfind( p ); + return d->pages.find( p ); } /*! |