diff options
Diffstat (limited to 'src/historypage.h')
-rw-r--r-- | src/historypage.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/historypage.h b/src/historypage.h index 9ff614f..552f2d6 100644 --- a/src/historypage.h +++ b/src/historypage.h @@ -39,27 +39,27 @@ class HistoryPage : public QueryPageBase Q_OBJECT public: - HistoryPage(QWidget* pParent = 0, const char* szName = 0); + HistoryPage(TQWidget* pParent = 0, const char* szName = 0); ~HistoryPage(); - void addRecord(const QString&, uint, const QString&); + void addRecord(const TQString&, uint, const TQString&); - virtual QString getCaption(bool bBrief = false) const; + virtual TQString getCaption(bool bBrief = false) const; protected: - virtual void addRecord(const QString&, const QString&, const QString&, - const QString&); - virtual QString getFileName(const QString&) const; + virtual void addRecord(const TQString&, const TQString&, const TQString&, + const TQString&); + virtual TQString getFileName(const TQString&) const; /** * @return Always true, since History files do not contain a header */ - virtual bool readHeader(QTextStream&) { return true; } + virtual bool readHeader(TQTextStream&) { return true; } /** * This method does nothing, since History files do not contain a header. */ - virtual void writeHeader(QTextStream&) {} + virtual void writeHeader(TQTextStream&) {} private: /** A unique ID used to create a tab caption for this page. */ |