From 84f5a315c3429b47a7eff15e626e2efdbe4f6e5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Tue, 8 Oct 2013 00:13:25 +0200 Subject: Initial TQt conversion --- src/symboldlg.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/symboldlg.h') diff --git a/src/symboldlg.h b/src/symboldlg.h index 4360213..1e5b463 100644 --- a/src/symboldlg.h +++ b/src/symboldlg.h @@ -28,7 +28,7 @@ #ifndef SYMBOLDLG_H #define SYMBOLDLG_H -#include +#include #include "symbollayout.h" #include "cscopefrontend.h" @@ -46,20 +46,20 @@ class SymbolDlg : public SymbolLayout Q_OBJECT public: - SymbolDlg(QWidget* pParent = 0, const char* szName = 0); + SymbolDlg(TQWidget* pParent = 0, const char* szName = 0); ~SymbolDlg(); enum { Reference = 0, Definition, Called, Calling, Text, Pattern, FileName, Including, CallTree }; void setType(uint); - void setSymbol(const QString&); - void setHistory(QStringList&); - QString getSymbol() const; + void setSymbol(const TQString&); + void setHistory(TQStringList&); + TQString getSymbol() const; uint getType() const; bool getCase() const; - static QString promptSymbol(QWidget*, uint&, const QString&, bool&); + static TQString promptSymbol(TQWidget*, uint&, const TQString&, bool&); static uint getQueryType(uint); static void resetHistory() { s_slHistory.clear(); } @@ -70,17 +70,17 @@ private: /** A regular expression for extracting the symbol name out of the text token of a Cscope record. @see note in slotHintDataReady(). */ - QRegExp m_reHint; + TQRegExp m_reHint; /** Displays query progress information. */ CscopeProgress m_progress; - static QStringList s_slHistory; + static TQStringList s_slHistory; private slots: void slotHintClicked(); void slotHintDataReady(FrontendToken*); - void slotHintItemSelected(QListViewItem*); + void slotHintItemSelected(TQListViewItem*); void slotHintOptionChanged(bool); void slotHintProgress(int, int); void slotHintFinished(uint); -- cgit v1.2.1