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 /kab/kabapi.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 'kab/kabapi.h')
-rw-r--r-- | kab/kabapi.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kab/kabapi.h b/kab/kabapi.h index 2c790ab1a..08971be77 100644 --- a/kab/kabapi.h +++ b/kab/kabapi.h @@ -76,10 +76,10 @@ public: * database itselfes, as you could not query if this could be done * without failures. Thus you have to call init before you can * use the database. - * @param parent The QWidget pointer to the parent widget. + * @param parent The TQWidget pointer to the parent widget. * @param name The widgets name (used for debugging) */ - KabAPI(QWidget* parent=0, const char* name=0); + KabAPI(TQWidget* parent=0, const char* name=0); /** * You must call init before accessing the database. init opens the * database file (usually $HOME/.kde/share/apps/kab/addressbook.database) @@ -158,7 +158,7 @@ public: * @param max Maximum number of returned entries. * @return NoError if an entry is found or NoEntry. */ - AddressBook::ErrorCode getEntryByName(const QString& name, + AddressBook::ErrorCode getEntryByName(const TQString& name, std::list<AddressBook::Entry>& entries, const int max=5); /** @@ -176,7 +176,7 @@ public: std::list<AddressBook::Entry>& entries, const int max=5); /** - * Execute this dialog. This overloads QDialog::exec to fill the list box + * Execute this dialog. This overloads TQDialog::exec to fill the list box * before showing. */ int exec(); @@ -203,13 +203,13 @@ protected slots: /** * Capture status messages from book. */ - void setStatusSlot(const QString&); - void slotDoubleClicked ( QListBoxItem * ); + void setStatusSlot(const TQString&); + void slotDoubleClicked ( TQListBoxItem * ); signals: /** * Send status messages. */ - void setStatus(const QString&); + void setStatus(const TQString&); // ############################################################################ private: class KAbAPIPrivate; |