diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
commit | 560378aaca1784ba19806a0414a32b20c744de39 (patch) | |
tree | ce0dfd7c3febf2a1adc7603d1019a8be2083c415 /kutils/kreplacedialog.h | |
parent | d4d5af1cdbd3cc65d095e0afc5b1f4260091cf5d (diff) | |
download | tdelibs-560378aaca1784ba19806a0414a32b20c744de39.tar.gz tdelibs-560378aaca1784ba19806a0414a32b20c744de39.zip |
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
NOTE: This will not compile with Qt4 (yet), however it does compile with Qt3
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1211081 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kutils/kreplacedialog.h')
-rw-r--r-- | kutils/kreplacedialog.h | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/kutils/kreplacedialog.h b/kutils/kreplacedialog.h index 409666dbd..e4c59e333 100644 --- a/kutils/kreplacedialog.h +++ b/kutils/kreplacedialog.h @@ -33,20 +33,20 @@ class TQRect; /** * @ingroup main - * @ingroup findreplace - * @short A generic "replace" dialog. + * @ingroup tqfindtqreplace + * @short A generic "tqreplace" dialog. * * @author S.R.Haque <srhaque@iee.org> * * \b Detail: * * This widget inherits from KFindDialog and implements - * the following additional functionalities: a replacement string + * the following additional functionalities: a tqreplacement string * object and an area for a user-defined widget to extend the dialog. * * \b Example: * - * To use the basic replace dialog: + * To use the basic tqreplace dialog: * * \code * \endcode @@ -68,25 +68,25 @@ public: */ enum Options { - PromptOnReplace = 256, ///< Should the user be prompted before the replace operation? + PromptOnReplace = 256, ///< Should the user be prompted before the tqreplace operation? BackReference = 512 }; /** - * Construct a replace dialog.read-only or rather select-only combo box with a + * Construct a tqreplace dialog.read-only or rather select-only combo box with a * parent object and a name. * * @param parent The parent object of this widget * @param name The name of this widget * @param options A bitfield of the Options to be enabled. - * @param findStrings A TQStringList to insert in the combo box of text to find - * @param replaceStrings A TQStringList to insert in the combo box of text to - * replace with + * @param tqfindStrings A TQStringList to insert in the combo box of text to tqfind + * @param tqreplaceStrings A TQStringList to insert in the combo box of text to + * tqreplace with * @param hasSelection Whether a selection exists */ KReplaceDialog( TQWidget *parent = 0, const char *name = 0, long options = 0, - const TQStringList &findStrings = TQStringList(), - const TQStringList &replaceStrings = TQStringList(), + const TQStringList &tqfindStrings = TQStringList(), + const TQStringList &tqreplaceStrings = TQStringList(), bool hasSelection = true ); /** @@ -96,21 +96,21 @@ public: /** * Provide the list of @p strings to be displayed as the history - * of replacement strings. @p strings might get truncated if it is + * of tqreplacement strings. @p strings might get truncated if it is * too long. * - * @param history The replacement history. - * @see replacementHistory + * @param history The tqreplacement history. + * @see tqreplacementHistory */ void setReplacementHistory( const TQStringList &history ); /** * Returns the list of history items. * - * @return The replacement history. + * @return The tqreplacement history. * @see setReplacementHistory */ - TQStringList replacementHistory() const; + TQStringList tqreplacementHistory() const; /** * Set the options which are enabled. @@ -130,19 +130,19 @@ public: long options() const; /** - * Returns the replacement string. - * @return The replacement string. + * Returns the tqreplacement string. + * @return The tqreplacement string. */ - TQString replacement() const; + TQString tqreplacement() const; /** * Returns an empty widget which the user may fill with additional UI * elements as required. The widget occupies the width of the dialog, * and is positioned immediately the regular expression support widgets - * for the replacement string. + * for the tqreplacement string. * @return An extensible TQWidget. */ - TQWidget *replaceExtension(); + TQWidget *tqreplaceExtension(); protected slots: |