summaryrefslogtreecommitdiffstats
path: root/kpilot/kpilot/dbviewerWidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'kpilot/kpilot/dbviewerWidget.h')
-rw-r--r--kpilot/kpilot/dbviewerWidget.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kpilot/kpilot/dbviewerWidget.h b/kpilot/kpilot/dbviewerWidget.h
index 9ef3ad8d..877a8699 100644
--- a/kpilot/kpilot/dbviewerWidget.h
+++ b/kpilot/kpilot/dbviewerWidget.h
@@ -45,24 +45,24 @@ class GenericDBWidget : public PilotComponent
Q_OBJECT
public:
- GenericDBWidget(QWidget* parent, const QString& dbpath);
+ GenericDBWidget(TQWidget* parent, const TQString& dbpath);
virtual ~GenericDBWidget();
// Pilot component methods
/* virtual */ void showComponent();
/* virtual */ void hideComponent();
- QString getCurrentDB() const { return currentDB; }
+ TQString getCurrentDB() const { return currentDB; }
protected:
void setupWidget();
protected slots:
- void slotSelected(const QString &dbname);
+ void slotSelected(const TQString &dbname);
void slotDBType(int mode);
void reset();
void slotAddRecord();
void slotEditRecord();
- bool slotEditRecord(QListViewItem*);
+ bool slotEditRecord(TQListViewItem*);
void slotDeleteRecord();
void slotShowAppInfo();
void slotShowDBInfo();
@@ -83,8 +83,8 @@ private:
} currentDBtype;
PilotLocalDatabase*fDB;
- QString currentDB;
- QPtrList<PilotRecord> fRecList;
+ TQString currentDB;
+ TQPtrList<PilotRecord> fRecList;
};