diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
commit | 10308be19ef7fa44699562cc75946e7ea1fdf6b9 (patch) | |
tree | 4bc444c00a79e88105f2cfce5b6209994c413ca0 /kutils/kreplacedialog.h | |
parent | 307136d8eef0ba133b78ceee8e901138d4c996a1 (diff) | |
download | tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.tar.gz tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.zip |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1212479 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 e4c59e333..409666dbd 100644 --- a/kutils/kreplacedialog.h +++ b/kutils/kreplacedialog.h @@ -33,20 +33,20 @@ class TQRect; /** * @ingroup main - * @ingroup tqfindtqreplace - * @short A generic "tqreplace" dialog. + * @ingroup findreplace + * @short A generic "replace" dialog. * * @author S.R.Haque <srhaque@iee.org> * * \b Detail: * * This widget inherits from KFindDialog and implements - * the following additional functionalities: a tqreplacement string + * the following additional functionalities: a replacement string * object and an area for a user-defined widget to extend the dialog. * * \b Example: * - * To use the basic tqreplace dialog: + * To use the basic replace dialog: * * \code * \endcode @@ -68,25 +68,25 @@ public: */ enum Options { - PromptOnReplace = 256, ///< Should the user be prompted before the tqreplace operation? + PromptOnReplace = 256, ///< Should the user be prompted before the replace operation? BackReference = 512 }; /** - * Construct a tqreplace dialog.read-only or rather select-only combo box with a + * Construct a replace 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 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 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 hasSelection Whether a selection exists */ KReplaceDialog( TQWidget *parent = 0, const char *name = 0, long options = 0, - const TQStringList &tqfindStrings = TQStringList(), - const TQStringList &tqreplaceStrings = TQStringList(), + const TQStringList &findStrings = TQStringList(), + const TQStringList &replaceStrings = TQStringList(), bool hasSelection = true ); /** @@ -96,21 +96,21 @@ public: /** * Provide the list of @p strings to be displayed as the history - * of tqreplacement strings. @p strings might get truncated if it is + * of replacement strings. @p strings might get truncated if it is * too long. * - * @param history The tqreplacement history. - * @see tqreplacementHistory + * @param history The replacement history. + * @see replacementHistory */ void setReplacementHistory( const TQStringList &history ); /** * Returns the list of history items. * - * @return The tqreplacement history. + * @return The replacement history. * @see setReplacementHistory */ - TQStringList tqreplacementHistory() const; + TQStringList replacementHistory() const; /** * Set the options which are enabled. @@ -130,19 +130,19 @@ public: long options() const; /** - * Returns the tqreplacement string. - * @return The tqreplacement string. + * Returns the replacement string. + * @return The replacement string. */ - TQString tqreplacement() const; + TQString replacement() 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 tqreplacement string. + * for the replacement string. * @return An extensible TQWidget. */ - TQWidget *tqreplaceExtension(); + TQWidget *replaceExtension(); protected slots: |