summaryrefslogtreecommitdiffstats
path: root/kpilot/kpilot/memoWidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'kpilot/kpilot/memoWidget.h')
-rw-r--r--kpilot/kpilot/memoWidget.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kpilot/kpilot/memoWidget.h b/kpilot/kpilot/memoWidget.h
index 837d25cd..99657df8 100644
--- a/kpilot/kpilot/memoWidget.h
+++ b/kpilot/kpilot/memoWidget.h
@@ -44,18 +44,18 @@ class MemoWidget : public PilotComponent
Q_OBJECT
public:
- MemoWidget(QWidget* parent, const QString& dbpath);
+ MemoWidget(TQWidget* parent, const TQString& dbpath);
virtual ~MemoWidget();
// Pilot Component Methods:
/* virtual */ void showComponent();
/* virtual */ void hideComponent();
- /* virtual */ bool preHotSync(QString &);
+ /* virtual */ bool preHotSync(TQString &);
/* virtual */ void postHotSync();
// Added by David Bishop, please move to correct location!
- bool saveAsXML(const QString &fileName,const QPtrList<PilotListItem> &menu_item );
- bool saveAsText(const QString &fileName,const QPtrList<PilotListItem> &menu_item );
+ bool saveAsXML(const TQString &fileName,const TQPtrList<PilotListItem> &menu_item );
+ bool saveAsText(const TQString &fileName,const TQPtrList<PilotListItem> &menu_item );
typedef enum {
MAX_MEMO_LEN = 8192
@@ -67,7 +67,7 @@ protected:
void saveChangedMemo();
- bool addMemo(const QString &text, int category);
+ bool addMemo(const TQString &text, int category);
public slots:
/**
@@ -97,13 +97,13 @@ private:
class Private;
- QComboBox* fCatList;
+ TQComboBox* fCatList;
KTextEdit* fTextWidget;
Private *d;
- QListBox* fListBox;
+ TQListBox* fListBox;
- QPushButton *fExportButton,*fDeleteButton;
+ TQPushButton *fExportButton,*fDeleteButton;
int lastSelectedMemo;
};