diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:20:30 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:20:30 +0000 |
commit | 28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c (patch) | |
tree | a2f011f22aa31d0839c6e2118501b7a6d2f2ae96 /kmouth/wordcompletion/wordcompletion.h | |
parent | 0285229d858c8f03cde7354c679a752598cf4515 (diff) | |
download | tdeaccessibility-28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c.tar.gz tdeaccessibility-28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaccessibility@1157633 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmouth/wordcompletion/wordcompletion.h')
-rw-r--r-- | kmouth/wordcompletion/wordcompletion.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kmouth/wordcompletion/wordcompletion.h b/kmouth/wordcompletion/wordcompletion.h index f0cb812..2bc5ceb 100644 --- a/kmouth/wordcompletion/wordcompletion.h +++ b/kmouth/wordcompletion/wordcompletion.h @@ -16,35 +16,35 @@ public: /** * Returns the names for the available word lists */ - QStringList wordLists(); + TQStringList wordLists(); /** * Returns the names for those word lists that contain * words of a given language. */ - QStringList wordLists(const QString &language); + TQStringList wordLists(const TQString &language); /** * Returns the language of a given word list. */ - QString languageOfWordList(const QString &wordlist); + TQString languageOfWordList(const TQString &wordlist); /** * Returns the name of the currently active word list. */ - QString currentWordList(); + TQString currentWordList(); /** * Finds completions to the given text. */ - virtual QString makeCompletion(const QString&); + virtual TQString makeCompletion(const TQString&); static bool isConfigured(); /** * Adds the words from the given sentence to the list of words. */ - void addSentence (const QString &sentence); + void addSentence (const TQString &sentence); public slots: /** @@ -58,7 +58,7 @@ public slots: * list gets used. * The method returns true if the specified word list was found. */ - bool setWordList(const QString &wordlist); + bool setWordList(const TQString &wordlist); /** * Saves the added words to disk. @@ -66,8 +66,8 @@ public slots: void save (); signals: - void wordListsChanged (const QStringList &wordLists); - void currentListChanged (const QString &wordList); + void wordListsChanged (const TQStringList &wordLists); + void currentListChanged (const TQString &wordList); private: class WordCompletionPrivate; |