diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kspell2/broker.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kspell2/broker.h')
-rw-r--r-- | kspell2/broker.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kspell2/broker.h b/kspell2/broker.h index 186c03aef..24f0338f1 100644 --- a/kspell2/broker.h +++ b/kspell2/broker.h @@ -24,9 +24,9 @@ #include <ksharedptr.h> -#include <qobject.h> -#include <qstringlist.h> -#include <qstring.h> +#include <tqobject.h> +#include <tqstringlist.h> +#include <tqstring.h> class KSharedConfig; template <typename T> @@ -45,7 +45,7 @@ namespace KSpell2 * KSpell2 class, you can think of it as the kernel or manager * of the KSpell2 architecture. */ - class KDE_EXPORT Broker : public QObject, + class KDE_EXPORT Broker : public TQObject, public KShared { Q_OBJECT @@ -94,18 +94,18 @@ namespace KSpell2 * */ Dictionary *dictionary( - const QString& language = QString::null, - const QString& client = QString::null ) const; + const TQString& language = TQString::null, + const TQString& client = TQString::null ) const; /** * Returns names of all supported clients (e.g. ISpell, ASpell) */ - QStringList clients() const; + TQStringList clients() const; /** * Returns a list of supported languages. */ - QStringList languages() const; + TQStringList languages() const; /** * Returns the Settings object used by the broker. @@ -124,12 +124,12 @@ namespace KSpell2 private: Broker( KSharedConfig *config ); void loadPlugins(); - void loadPlugin( const QString& ); + void loadPlugin( const TQString& ); private: class Private; Private *d; private: - static QPtrDict<Broker> *s_brokers; + static TQPtrDict<Broker> *s_brokers; }; } |