diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-03 22:23:44 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-03 22:23:44 -0600 |
commit | 203ba231d0276943aae36111f9ec1e949f3c6a4c (patch) | |
tree | f039f7a5b5fc2da88a96876971bac580d87f6788 /sip/kspell2/dictionary.sip | |
parent | fd35f4a8382b7d223bc0325b9ca3f88515778aa0 (diff) | |
download | pytde-203ba231d0276943aae36111f9ec1e949f3c6a4c.tar.gz pytde-203ba231d0276943aae36111f9ec1e949f3c6a4c.zip |
Initial TQt conversion
Diffstat (limited to 'sip/kspell2/dictionary.sip')
-rw-r--r-- | sip/kspell2/dictionary.sip | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sip/kspell2/dictionary.sip b/sip/kspell2/dictionary.sip index 0f33b56..f0241ba 100644 --- a/sip/kspell2/dictionary.sip +++ b/sip/kspell2/dictionary.sip @@ -35,17 +35,17 @@ class Dictionary %End public: - virtual bool check (const QString&) = 0; - virtual QStringList suggest (const QString&) = 0; - virtual bool checkAndSuggest (const QString&, QStringList&) = 0; - virtual bool storeReplacement (const QString&, const QString&) = 0; - virtual bool addToPersonal (const QString&) = 0; - virtual bool addToSession (const QString&) = 0; - QString language () const; + virtual bool check (const TQString&) = 0; + virtual TQStringList suggest (const TQString&) = 0; + virtual bool checkAndSuggest (const TQString&, TQStringList&) = 0; + virtual bool storeReplacement (const TQString&, const TQString&) = 0; + virtual bool addToPersonal (const TQString&) = 0; + virtual bool addToSession (const TQString&) = 0; + TQString language () const; bool isDefault () const; protected: - Dictionary (const QString&, bool = 0); + Dictionary (const TQString&, bool = 0); protected: |