diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /libkdepim/recentaddresses.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkdepim/recentaddresses.h')
-rw-r--r-- | libkdepim/recentaddresses.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libkdepim/recentaddresses.h b/libkdepim/recentaddresses.h index 917d63fbe..03254031b 100644 --- a/libkdepim/recentaddresses.h +++ b/libkdepim/recentaddresses.h @@ -30,7 +30,7 @@ #ifndef RECENTADDRESSES_H #define RECENTADDRESSES_H -#include <qstringlist.h> +#include <tqstringlist.h> #include <kabc/addressee.h> #include <kdialogbase.h> @@ -44,9 +44,9 @@ namespace KRecentAddress { class KDE_EXPORT RecentAddressDialog : public KDialogBase { public: - RecentAddressDialog( QWidget *parent, const char *name = 0 ); - void setAddresses( const QStringList &addrs ); - QStringList addresses() const; + RecentAddressDialog( TQWidget *parent, const char *name = 0 ); + void setAddresses( const TQStringList &addrs ); + TQStringList addresses() const; private: KEditListBox *mEditor; }; @@ -77,7 +77,7 @@ public: * Note: an entry doesn't have to be one email address, it can be multiple, * like "Foo <foo@bar.org>, Bar Baz <bar@baz.org>". */ - QStringList addresses() const; + TQStringList addresses() const; const KABC::Addressee::List& kabcAddresses() const { return m_addresseeList; } /** @@ -85,7 +85,7 @@ public: * Note: an entry doesn't have to be one email address, it can be multiple, * like "Foo <foo@bar.org>, Bar Baz <bar@baz.org>". */ - void add( const QString& entry ); + void add( const TQString& entry ); /** * Sets the maximum number, the list can hold. The list adjusts to this |