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 /kaddressbook/features/resourceselection.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 'kaddressbook/features/resourceselection.h')
-rw-r--r-- | kaddressbook/features/resourceselection.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/kaddressbook/features/resourceselection.h b/kaddressbook/features/resourceselection.h index a2eff8c13..831cc4a55 100644 --- a/kaddressbook/features/resourceselection.h +++ b/kaddressbook/features/resourceselection.h @@ -40,11 +40,11 @@ class ResourceSelection : public KAB::ExtensionWidget Q_OBJECT public: - ResourceSelection( KAB::Core*, QWidget *parent, const char *name ); + ResourceSelection( KAB::Core*, TQWidget *parent, const char *name ); virtual ~ResourceSelection(); - QString title() const; - QString identifier() const; + TQString title() const; + TQString identifier() const; void contactsSelectionChanged() {}; @@ -52,21 +52,21 @@ class ResourceSelection : public KAB::ExtensionWidget void add(); void edit(); void remove(); - void currentChanged( QListViewItem* ); + void currentChanged( TQListViewItem* ); void updateView(); void slotSubresourceAdded( KPIM::ResourceABC *resource, - const QString& /*type*/, - const QString& subResource ); + const TQString& /*type*/, + const TQString& subResource ); void slotSubresourceRemoved( KPIM::ResourceABC* /*resource*/, - const QString& /*type*/, - const QString& subResource ); + const TQString& /*type*/, + const TQString& subResource ); void slotSubresourceChanged( KPIM::ResourceABC* /*resource*/, - const QString& /*type*/, - const QString& subResource ); + const TQString& /*type*/, + const TQString& subResource ); - void contextMenuRequested ( QListViewItem *i, const QPoint &pos, int ); + void contextMenuRequested ( TQListViewItem *i, const TQPoint &pos, int ); void showInfo(); @@ -77,14 +77,14 @@ class ResourceSelection : public KAB::ExtensionWidget void initGUI(); ResourceItem* selectedItem() const; - ResourceItem* findSubResourceItem( KPIM::ResourceABC *resource, const QString &subResource ); + ResourceItem* findSubResourceItem( KPIM::ResourceABC *resource, const TQString &subResource ); KListView *mListView; - QPushButton *mAddButton; - QPushButton *mEditButton; - QPushButton *mRemoveButton; + TQPushButton *mAddButton; + TQPushButton *mEditButton; + TQPushButton *mRemoveButton; - QString mLastResource; + TQString mLastResource; KRES::Manager<KABC::Resource> *mManager; }; |