summaryrefslogtreecommitdiffstats
path: root/kpackage/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'kpackage/options.h')
-rw-r--r--kpackage/options.h72
1 files changed, 36 insertions, 36 deletions
diff --git a/kpackage/options.h b/kpackage/options.h
index 4f8b1e7..c1aa840 100644
--- a/kpackage/options.h
+++ b/kpackage/options.h
@@ -35,10 +35,10 @@
#include <stdio.h>
// Qt Headers
-#include <qdir.h>
-#include <qwidget.h>
-#include <qfiledialog.h>
-#include <qgroupbox.h>
+#include <tqdir.h>
+#include <tqwidget.h>
+#include <tqfiledialog.h>
+#include <tqgroupbox.h>
// KDE headers
#include <kapplication.h>
@@ -65,7 +65,7 @@ class Options : public KDialogBase
public:
- Options ( QWidget *parent = 0);
+ Options ( TQWidget *parent = 0);
~Options();
void restore();
@@ -80,45 +80,45 @@ private:
bool PkgRead;
bool fRemote;
int DCache, dc, PCache, pc, privCmd, prc;
- QString CacheDir;
+ TQString CacheDir;
- QVBoxLayout* vl;
+ TQVBoxLayout* vl;
- QVBoxLayout* vt;
- QGroupBox *framet;
- QGroupBox *packageBox[kpinterfaceN];
- QCheckBox *packageHandle[kpinterfaceN];
- QPushButton *locate[kpinterfaceN];
+ TQVBoxLayout* vt;
+ TQGroupBox *framet;
+ TQGroupBox *packageBox[kpinterfaceN];
+ TQCheckBox *packageHandle[kpinterfaceN];
+ TQPushButton *locate[kpinterfaceN];
- QGroupBox *hh;
- QCheckBox *huse;
+ TQGroupBox *hh;
+ TQCheckBox *huse;
KComboBox *hosts;
- QVBoxLayout* vb;
- QButtonGroup *bg;
- QRadioButton *disp[4];
+ TQVBoxLayout* vb;
+ TQButtonGroup *bg;
+ TQRadioButton *disp[4];
- QVBoxLayout* vc;
- QButtonGroup *bc;
- QRadioButton *dcache[3];
+ TQVBoxLayout* vc;
+ TQButtonGroup *bc;
+ TQRadioButton *dcache[3];
- QVBoxLayout* vp;
- QButtonGroup *bp;
- QRadioButton *pcache[3];
+ TQVBoxLayout* vp;
+ TQButtonGroup *bp;
+ TQRadioButton *pcache[3];
- QVBoxLayout* vs;
- QButtonGroup *bs;
- QRadioButton *privs[3];
+ TQVBoxLayout* vs;
+ TQButtonGroup *bs;
+ TQRadioButton *privs[3];
KURLRequester *cachedir;
- QVBoxLayout* vr;
- QGroupBox *framer;
- QCheckBox *pkgRead;
+ TQVBoxLayout* vr;
+ TQGroupBox *framer;
+ TQCheckBox *pkgRead;
- QVBoxLayout* vf;
- QGroupBox *framem;
- QCheckBox *valid;
+ TQVBoxLayout* vf;
+ TQGroupBox *framem;
+ TQCheckBox *valid;
public slots:
@@ -140,13 +140,13 @@ private slots:
class Opts
{
public:
- void readSettings(const QString &initHost = "");
+ void readSettings(const TQString &initHost = "");
void writeSettings();
void readLaterSettings();
// options to be setup after package interfaces setup
- QStringList hostList;
+ TQStringList hostList;
// list of hosts to choose from
bool VerifyFL;
@@ -170,10 +170,10 @@ public:
// which command to use to execute priveliged commands
enum {SUcmd=0, SUDOcmd=1, SSHcmd=2};
- QString CacheDir;
+ TQString CacheDir;
// cache directory
- Opts(const QString &initHost);
+ Opts(const TQString &initHost);
~Opts();
};
//////////////////////////////////////////////////////////////////////////////