summaryrefslogtreecommitdiffstats
path: root/src/queryviewdlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/queryviewdlg.h')
-rw-r--r--src/queryviewdlg.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/queryviewdlg.h b/src/queryviewdlg.h
index fc1c2f7..f78ee21 100644
--- a/src/queryviewdlg.h
+++ b/src/queryviewdlg.h
@@ -50,7 +50,7 @@ class QueryViewDlg : public QueryViewLayout
Q_OBJECT
public:
- QueryViewDlg(uint nFlags = 0, QWidget* pParent = 0,
+ QueryViewDlg(uint nFlags = 0, TQWidget* pParent = 0,
const char* szName = 0);
~QueryViewDlg();
@@ -58,7 +58,7 @@ public:
enum { CloseOnSelect = 0x1, DestroyOnClose = 0x2,
DestroyOnSelect = CloseOnSelect | DestroyOnClose };
- void query(uint, const QString&, bool bCase = true);
+ void query(uint, const TQString&, bool bCase = true);
QueryView::Iterator getIterator();
@@ -69,7 +69,7 @@ signals:
* @param sFile The "File" field of the selected record
* @param nLine The "Line" field of the selected record
*/
- void lineRequested(const QString& sFile, uint nLine);
+ void lineRequested(const TQString& sFile, uint nLine);
private:
/** Flags the control the behaviour of the dialogue. */
@@ -81,7 +81,7 @@ private:
private slots:
void slotShow();
- void slotLineRequested(const QString&, uint);
+ void slotLineRequested(const TQString&, uint);
};
#endif