summaryrefslogtreecommitdiffstats
path: root/src/arkollon/uninstallwizard.h
diff options
context:
space:
mode:
authorMavridis Philippe <mavridisf@gmail.com>2021-01-13 19:30:17 +0200
committerMavridis Philippe <mavridisf@gmail.com>2021-01-13 19:30:17 +0200
commit357ddeb8afd82d69ef871c146f4fc8f2c67fb17e (patch)
treedc3ef0e6fedd64f5fb177c114f72e1515a07cd1b /src/arkollon/uninstallwizard.h
parentc6cbd71bc169ac0e927e52325dbbbcb506abbc73 (diff)
downloadklamav-357ddeb8afd82d69ef871c146f4fc8f2c67fb17e.tar.gz
klamav-357ddeb8afd82d69ef871c146f4fc8f2c67fb17e.zip
Conversion Qt3->TQt
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
Diffstat (limited to 'src/arkollon/uninstallwizard.h')
-rw-r--r--src/arkollon/uninstallwizard.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/arkollon/uninstallwizard.h b/src/arkollon/uninstallwizard.h
index 12180db..e70c0ee 100644
--- a/src/arkollon/uninstallwizard.h
+++ b/src/arkollon/uninstallwizard.h
@@ -25,20 +25,20 @@
#include "logdialog.h"
#include "headerlistitem.h"
-#include <qlistview.h>
-#include <qprocess.h>
-#include <qpixmap.h>
+#include <tqlistview.h>
+#include <tqprocess.h>
+#include <tqpixmap.h>
-class AppListItem : public QCheckListItem
+class AppListItem : public TQCheckListItem
{
public:
- AppListItem(QString nN, QString n, QListView* lv);
- int compare(QListViewItem* i, int col, bool ascending) const;
+ AppListItem(TQString nN, TQString n, TQListView* lv);
+ int compare(TQListViewItem* i, int col, bool ascending) const;
int rtti() const { return 1003; }
- QString niceName;
- QString name;
+ TQString niceName;
+ TQString name;
int section;
};
@@ -49,7 +49,7 @@ class UninstallWizard : public WizardBase
Q_OBJECT
public:
- UninstallWizard(QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
+ UninstallWizard(TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
~UninstallWizard();
public slots:
@@ -77,10 +77,10 @@ private:
} currentStage;
LogDialog* logDialog;
- QProcess* externalProcess;
+ TQProcess* externalProcess;
HeaderListItem* globalHeader;
- QPixmap icon;
+ TQPixmap icon;
};
#endif