diff options
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 |