summaryrefslogtreecommitdiffstats
path: root/kppp/acctselect.h
diff options
context:
space:
mode:
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;
};