summaryrefslogtreecommitdiffstats
path: root/kpilot/kpilot/pilotComponent.h
diff options
context:
space:
mode:
Diffstat (limited to 'kpilot/kpilot/pilotComponent.h')
-rw-r--r--kpilot/kpilot/pilotComponent.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kpilot/kpilot/pilotComponent.h b/kpilot/kpilot/pilotComponent.h
index f96093a2..01c5a3f3 100644
--- a/kpilot/kpilot/pilotComponent.h
+++ b/kpilot/kpilot/pilotComponent.h
@@ -32,7 +32,7 @@
/**
* Base class for any module to KPilot
*/
-#include <qwidget.h>
+#include <tqwidget.h>
struct CategoryAppInfo;
class QComboBox;
@@ -44,9 +44,9 @@ Q_OBJECT
friend class KPilotInstaller;
public:
- PilotComponent(QWidget* parent,
+ PilotComponent(TQWidget* parent,
const char *id,
- const QString& dbPath);
+ const TQString& dbPath);
/**
* Called when the component is shown in kpilot. It should
@@ -83,7 +83,7 @@ public:
* "Can't start HotSync. %1"
* where %1 is replaced by s.
*/
- virtual bool preHotSync(QString &s) ;
+ virtual bool preHotSync(TQString &s) ;
/**
* Reload data (possibly changed by the hotsync) etc. etc.
@@ -105,7 +105,7 @@ protected:
* selected, their ID is returned. If nothing is selected,
* behave as if "All" is selected.
*/
- int findSelectedCategory(QComboBox *,
+ int findSelectedCategory(TQComboBox *,
CategoryAppInfo *,
bool AllIsUnfiled=false);
@@ -119,12 +119,12 @@ protected:
*
* If info is a NULL pointer, just put "All" in the combo box.
*/
- void populateCategories(QComboBox *,
+ void populateCategories(TQComboBox *,
CategoryAppInfo *info=0);
- void setDBPath(const QString &path) { fDBPath = path; } ;
- const QString& dbPath() const { return fDBPath; } ;
- void markDBDirty(const QString db);
+ void setDBPath(const TQString &path) { fDBPath = path; } ;
+ const TQString& dbPath() const { return fDBPath; } ;
+ void markDBDirty(const TQString db);
public slots:
void slotShowComponent();
@@ -133,7 +133,7 @@ signals:
void showComponent(PilotComponent *);
private:
- QString fDBPath;
+ TQString fDBPath;
protected:
bool shown;
} ;