summaryrefslogtreecommitdiffstats
path: root/kwallet/kwalletmanager.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
commit5f5ee2367157176ed223b86343eb0a9e4022e020 (patch)
tree6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /kwallet/kwalletmanager.h
parent4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff)
downloadtdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.tar.gz
tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kwallet/kwalletmanager.h')
-rw-r--r--kwallet/kwalletmanager.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/kwallet/kwalletmanager.h b/kwallet/kwalletmanager.h
index 0c28839..c9cc553 100644
--- a/kwallet/kwalletmanager.h
+++ b/kwallet/kwalletmanager.h
@@ -22,7 +22,7 @@
#include <kmainwindow.h>
#include <dcopobject.h>
-#include <qptrlist.h>
+#include <tqptrlist.h>
class KSystemTray;
class KWalletIconView;
@@ -35,23 +35,23 @@ class KWalletManager : public KMainWindow, public DCOPObject {
K_DCOP
public:
- KWalletManager(QWidget *parent = 0, const char* name = 0, WFlags f = 0);
+ KWalletManager(TQWidget *parent = 0, const char* name = 0, WFlags f = 0);
virtual ~KWalletManager();
- QPixmap loadSystemTrayIcon(const QString &icon);
+ TQPixmap loadSystemTrayIcon(const TQString &icon);
void kwalletdLaunch();
public slots:
void createWallet();
- void deleteWallet(const QString& walletName);
- void closeWallet(const QString& walletName);
- void changeWalletPassword(const QString& walletName);
- void openWallet(const QString& walletName);
- void openWallet(const QString& walletName, bool newWallet);
- void openWalletFile(const QString& path);
- void openWallet(QIconViewItem *item);
- void contextMenu(QIconViewItem *item, const QPoint& pos);
+ void deleteWallet(const TQString& walletName);
+ void closeWallet(const TQString& walletName);
+ void changeWalletPassword(const TQString& walletName);
+ void openWallet(const TQString& walletName);
+ void openWallet(const TQString& walletName, bool newWallet);
+ void openWalletFile(const TQString& path);
+ void openWallet(TQIconViewItem *item);
+ void contextMenu(TQIconViewItem *item, const TQPoint& pos);
protected:
virtual bool queryClose();
@@ -66,7 +66,7 @@ class KWalletManager : public KMainWindow, public DCOPObject {
void shuttingDown();
void possiblyQuit();
void editorClosed(KMainWindow* e);
- void possiblyRescan(const QCString& app);
+ void possiblyRescan(const TQCString& app);
void setupWallet();
void openWallet();
void deleteWallet();
@@ -77,7 +77,7 @@ class KWalletManager : public KMainWindow, public DCOPObject {
bool _shuttingDown;
KWalletIconView *_iconView;
DCOPRef *_dcopRef;
- QPtrList<KMainWindow> _windows;
+ TQPtrList<KMainWindow> _windows;
bool _kwalletdLaunch;
};