summaryrefslogtreecommitdiffstats
path: root/kwallet/kwalleteditor.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/kwalleteditor.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/kwalleteditor.h')
-rw-r--r--kwallet/kwalleteditor.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/kwallet/kwalleteditor.h b/kwallet/kwalleteditor.h
index 2a3c9ef..62cbcf1 100644
--- a/kwallet/kwalleteditor.h
+++ b/kwallet/kwalleteditor.h
@@ -24,7 +24,7 @@
#include "walletwidget.h"
#include <kwallet.h>
#include <kmainwindow.h>
-#include <qstringlist.h>
+#include <tqstringlist.h>
class KAction;
class QIconViewItem;
@@ -38,7 +38,7 @@ class KWalletEditor : public KMainWindow {
Q_OBJECT
public:
- KWalletEditor(const QString& wallet, bool isPath, QWidget *parent = 0, const char* name = 0);
+ KWalletEditor(const TQString& wallet, bool isPath, TQWidget *parent = 0, const char* name = 0);
virtual ~KWalletEditor();
bool isOpen() const { return _w != 0L; }
@@ -53,10 +53,10 @@ class KWalletEditor : public KMainWindow {
private slots:
void layout();
void updateFolderList(bool checkEntries = false);
- void entrySelectionChanged(QListViewItem *item);
- void listItemRenamed(QListViewItem *, int, const QString&);
- void listContextMenuRequested(QListViewItem *item, const QPoint& pos, int col);
- void updateEntries(const QString& folder);
+ void entrySelectionChanged(TQListViewItem *item);
+ void listItemRenamed(TQListViewItem *, int, const TQString&);
+ void listContextMenuRequested(TQListViewItem *item, const TQPoint& pos, int col);
+ void updateEntries(const TQString& folder);
void newEntry();
void renameEntry();
@@ -86,7 +86,7 @@ class KWalletEditor : public KMainWindow {
void editorClosed(KMainWindow*);
public:
- QString _walletName;
+ TQString _walletName;
private:
void createActions();
@@ -98,12 +98,12 @@ class KWalletEditor : public KMainWindow {
KAction *_newFolderAction, *_deleteFolderAction;
KAction *_passwordAction, *_exportAction, *_saveAsAction, *_mergeAction, *_importAction;
KAction *_copyPassAction;
- QLabel*_details;
- QString _currentFolder;
- QMap<QString,QString> _currentMap; // save memory by storing
+ TQLabel*_details;
+ TQString _currentFolder;
+ TQMap<TQString,TQString> _currentMap; // save memory by storing
// only the most recent map.
KWMapEditor *_mapEditor;
- QCheckBox *_mapEditorShowHide;
+ TQCheckBox *_mapEditorShowHide;
bool _newWallet;
};