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 /kabc/distributionlistdialog.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 'kabc/distributionlistdialog.h')
-rw-r--r-- | kabc/distributionlistdialog.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/kabc/distributionlistdialog.h b/kabc/distributionlistdialog.h index 9a163ef7d..eb2e68e55 100644 --- a/kabc/distributionlistdialog.h +++ b/kabc/distributionlistdialog.h @@ -21,7 +21,7 @@ #ifndef KABC_DISTRIBUTIONLISTDIALOG_H #define KABC_DISTRIBUTIONLISTDIALOG_H -#include <qwidget.h> +#include <tqwidget.h> #include <kdialogbase.h> @@ -63,7 +63,7 @@ class KABC_EXPORT DistributionListDialog : public KDialogBase @param ab The addressbook, the addressees should be used from @param parent The parent widget */ - DistributionListDialog( AddressBook *ab, QWidget *parent ); + DistributionListDialog( AddressBook *ab, TQWidget *parent ); /** Destructor. @@ -83,16 +83,16 @@ class KABC_EXPORT DistributionListDialog : public KDialogBase class KABC_EXPORT EmailSelector : public KDialogBase { public: - EmailSelector( const QStringList &emails, const QString ¤t, - QWidget *parent ); + EmailSelector( const TQStringList &emails, const TQString ¤t, + TQWidget *parent ); - QString selected(); + TQString selected(); - static QString getEmail( const QStringList &emails, const QString ¤t, - QWidget *parent ); + static TQString getEmail( const TQStringList &emails, const TQString ¤t, + TQWidget *parent ); private: - QButtonGroup *mButtonGroup; + TQButtonGroup *mButtonGroup; }; /** @@ -103,7 +103,7 @@ class KABC_EXPORT DistributionListEditorWidget : public QWidget Q_OBJECT public: - DistributionListEditorWidget( AddressBook *, QWidget *parent ); + DistributionListEditorWidget( AddressBook *, TQWidget *parent ); virtual ~DistributionListEditorWidget(); private slots: @@ -121,15 +121,15 @@ class KABC_EXPORT DistributionListEditorWidget : public QWidget void save(); private: - QComboBox *mNameCombo; - QLabel *mListLabel; - QListView *mEntryView; - QListView *mAddresseeView; + TQComboBox *mNameCombo; + TQLabel *mListLabel; + TQListView *mEntryView; + TQListView *mAddresseeView; AddressBook *mAddressBook; DistributionListManager *mManager; - QPushButton *mNewButton, *mEditButton, *mRemoveButton; - QPushButton *mChangeEmailButton, *mRemoveEntryButton, *mAddEntryButton; + TQPushButton *mNewButton, *mEditButton, *mRemoveButton; + TQPushButton *mChangeEmailButton, *mRemoveEntryButton, *mAddEntryButton; struct Data; Data *d; |