summaryrefslogtreecommitdiffstats
path: root/kppp/acctselect.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kppp/acctselect.h
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz
tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kppp/acctselect.h')
-rw-r--r--kppp/acctselect.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/kppp/acctselect.h b/kppp/acctselect.h
index 42730dd3..7a4b319a 100644
--- a/kppp/acctselect.h
+++ b/kppp/acctselect.h
@@ -35,9 +35,9 @@
#ifndef __ACCTSELECT__H__
#define __ACCTSELECT__H__
-#include <qwidget.h>
-#include <qpixmap.h>
-#include <qdir.h>
+#include <tqwidget.h>
+#include <tqpixmap.h>
+#include <tqdir.h>
class QCheckBox;
class QComboBox;
@@ -45,35 +45,35 @@ class QLabel;
class QListView;
class QListViewItem;
-class AccountingSelector : public QWidget {
+class AccountingSelector : public TQWidget {
Q_OBJECT
public:
- AccountingSelector(QWidget *parent = 0, bool _isnewaccount = false, const char *name = 0);
+ AccountingSelector(TQWidget *parent = 0, bool _isnewaccount = false, const char *name = 0);
~AccountingSelector() {}
bool save();
private:
- QListViewItem *findByName(QString name);
+ TQListViewItem *findByName(TQString name);
void setupTreeWidget();
- void insertDir(QDir, QListViewItem * = 0);
- QString fileNameToName(QString);
- QString nameToFileName(QString);
+ void insertDir(TQDir, TQListViewItem * = 0);
+ TQString fileNameToName(TQString);
+ TQString nameToFileName(TQString);
private slots:
- void openURL(const QString &);
+ void openURL(const TQString &);
void enableItems(bool);
- void slotSelectionChanged(QListViewItem* i);
+ void slotSelectionChanged(TQListViewItem* i);
private:
- QCheckBox *enable_accounting;
- QListView *tl;
- QComboBox *use_vol;
- QPixmap pmfolder, pmfile;
- QLabel *selected;
+ TQCheckBox *enable_accounting;
+ TQListView *tl;
+ TQComboBox *use_vol;
+ TQPixmap pmfolder, pmfile;
+ TQLabel *selected;
- QListViewItem *edit_item;
- QString edit_s;
+ TQListViewItem *edit_item;
+ TQString edit_s;
bool isnewaccount;
};