diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-23 01:42:07 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-23 01:42:07 +0000 |
commit | a2277b6bc715464e83882b90c2a058139b8a6b54 (patch) | |
tree | ab09b14014f59b4d8e2ddd12226aa0b22e4dfc5d /kwallet/allyourbase.h | |
parent | d3f79e04b34bd1f70a458b81b28fc8799498c8dc (diff) | |
download | tdeutils-a2277b6bc715464e83882b90c2a058139b8a6b54.tar.gz tdeutils-a2277b6bc715464e83882b90c2a058139b8a6b54.zip |
TQt4 port kdeutils
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1238125 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kwallet/allyourbase.h')
-rw-r--r-- | kwallet/allyourbase.h | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/kwallet/allyourbase.h b/kwallet/allyourbase.h index 299a6c9..7c37c10 100644 --- a/kwallet/allyourbase.h +++ b/kwallet/allyourbase.h @@ -27,8 +27,8 @@ #include <kiconloader.h> #include <kicontheme.h> -#define KWALLETENTRYMAGIC ((Q_UINT32) 0x6B776C65) -#define KWALLETFOLDERMAGIC ((Q_UINT32) 0x6B776C66) +#define KWALLETENTRYMAGIC ((TQ_UINT32) 0x6B776C65) +#define KWALLETFOLDERMAGIC ((TQ_UINT32) 0x6B776C66) enum KWalletListItemClasses { KWalletFolderItemClass = 1000, @@ -39,7 +39,7 @@ enum KWalletListItemClasses { class KWalletEntryItem : public KListViewItem { public: - KWalletEntryItem(KWallet::Wallet *w, TQListViewItem* parent, const TQString& ename); + KWalletEntryItem(KWallet::Wallet *w, TQListViewItem* tqparent, const TQString& ename); virtual ~KWalletEntryItem(); const TQString& oldName() { return _oldName; } @@ -57,14 +57,14 @@ class KWalletEntryItem : public KListViewItem { class KWalletContainerItem : public KListViewItem { public: - KWalletContainerItem(TQListViewItem* parent, const TQString& name, + KWalletContainerItem(TQListViewItem* tqparent, const TQString& name, KWallet::Wallet::EntryType type); virtual ~KWalletContainerItem(); public: virtual int rtti() const; KWallet::Wallet::EntryType type(); - bool contains(const TQString& itemKey); + bool tqcontains(const TQString& itemKey); TQListViewItem* getItem(const TQString& itemKey); private: @@ -73,7 +73,7 @@ class KWalletContainerItem : public KListViewItem { class KWalletFolderItem : public KListViewItem { public: - KWalletFolderItem(KWallet::Wallet *w, TQListView* parent, + KWalletFolderItem(KWallet::Wallet *w, TQListView* tqparent, const TQString& name, int entries); virtual ~KWalletFolderItem(); @@ -84,7 +84,7 @@ class KWalletFolderItem : public KListViewItem { void refresh(); KWalletContainerItem* getContainer(KWallet::Wallet::EntryType type); TQPixmap getFolderIcon(KIcon::Group group); - bool contains(const TQString& itemKey); + bool tqcontains(const TQString& itemKey); TQListViewItem* getItem(const TQString& itemKey); public: @@ -97,8 +97,9 @@ class KWalletFolderItem : public KListViewItem { class KWalletEntryList : public KListView { Q_OBJECT + TQ_OBJECT public: - KWalletEntryList(TQWidget *parent, const char *name = 0L); + KWalletEntryList(TQWidget *tqparent, const char *name = 0L); virtual ~KWalletEntryList(); bool existsFolder(const TQString& name); @@ -121,7 +122,7 @@ class KWalletEntryList : public KListView { class KWalletItem : public TQIconViewItem { public: - KWalletItem(TQIconView *parent, const TQString& walletName); + KWalletItem(TQIconView *tqparent, const TQString& walletName); virtual ~KWalletItem(); virtual bool acceptDrop(const TQMimeSource *mime) const; @@ -133,8 +134,9 @@ class KWalletItem : public TQIconViewItem { class KWalletIconView : public KIconView { Q_OBJECT + TQ_OBJECT public: - KWalletIconView(TQWidget *parent, const char *name = 0L); + KWalletIconView(TQWidget *tqparent, const char *name = 0L); virtual ~KWalletIconView(); protected slots: |