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 /kdeui/ksconfig.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 'kdeui/ksconfig.h')
-rw-r--r-- | kdeui/ksconfig.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kdeui/ksconfig.h b/kdeui/ksconfig.h index cf3583e94..0c688d459 100644 --- a/kdeui/ksconfig.h +++ b/kdeui/ksconfig.h @@ -34,7 +34,7 @@ class KSpellConfigPrivate; /** * @brief Encoding for the spell checker * @note In the identifier names LATIN means ISO-8859, not ECMA Latin - * @todo Should be tqreplaced by the charset strings + * @todo Should be replaced by the charset strings * because the config file would be more stable * when inserting entries in the list */ @@ -67,7 +67,7 @@ enum KSpellClients { /** * A configuration class/dialog for KSpell. * - * It tqcontains all of the options settings.The options are set to default + * It contains all of the options settings.The options are set to default * values by the constructor and can be reset either by using the * public interface or by using KSpellConfig as a widget in a dialog * (or, preferably a tabbed dialog using KDialogBase) and letting @@ -139,10 +139,10 @@ class KDEUI_EXPORT KSpellConfig : public QWidget /** * - * The @p _ignorelist tqcontains words you'd like KSpell + * The @p _ignorelist contains words you'd like KSpell * to ignore when it is spellchecking. When you get a KSpellConfig * object back from KSpell (using KSpell::kcConfig()), - * the @p _ignorelist tqcontains whatever was put in by you plus + * the @p _ignorelist contains whatever was put in by you plus * any words the user has chosen to ignore via the dialog box. * It may be useful to save this list with the document being * edited to facilitate quicker future spellchecking. @@ -150,11 +150,11 @@ class KDEUI_EXPORT KSpellConfig : public QWidget void setIgnoreList( TQStringList _ignorelist ); /** - * The @p _tqreplaceAllList tqcontains word you like that tqreplace - * word. Be careful that this list tqcontains word which is tqreplaced + * The @p _replaceAllList contains word you like that replace + * word. Be careful that this list contains word which is replaced * and new word. */ - void setReplaceAllList( TQStringList _tqreplaceAllList ); + void setReplaceAllList( TQStringList _replaceAllList ); /** * Set an ISpell option. @@ -193,7 +193,7 @@ class KDEUI_EXPORT KSpellConfig : public QWidget //TQString personalDict () const; int encoding() const; TQStringList ignoreList() const; - TQStringList tqreplaceAllList() const; + TQStringList replaceAllList() const; int client() const; ///< Spell checker client, see KSpellClients |