summaryrefslogtreecommitdiffstats
path: root/src/calltreemanager.h
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-10-08 00:13:25 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-10-08 05:14:53 +0200
commit84f5a315c3429b47a7eff15e626e2efdbe4f6e5e (patch)
tree770861aa9033e1dc6c5168358194ff85b32dd429 /src/calltreemanager.h
parent57d8bb3d12aed373eee08915f0ff19f5233aabe3 (diff)
downloadkscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.tar.gz
kscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.zip
Initial TQt conversion
Diffstat (limited to 'src/calltreemanager.h')
-rw-r--r--src/calltreemanager.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/calltreemanager.h b/src/calltreemanager.h
index adb91e6..09d47f7 100644
--- a/src/calltreemanager.h
+++ b/src/calltreemanager.h
@@ -28,8 +28,8 @@
#ifndef CALLTREEMANAGER_H
#define CALLTREEMANAGER_H
-#include <qwidget.h>
-#include <qptrlist.h>
+#include <ntqwidget.h>
+#include <ntqptrlist.h>
class CallTreeDlg;
@@ -38,16 +38,16 @@ class CallTreeDlg;
* Responsible for saving/loading of the call tree dialogs.
* @author Albert Yosher
*/
-class CallTreeManager : public QObject
+class CallTreeManager : public TQObject
{
Q_OBJECT
public:
- CallTreeManager(QWidget*);
+ CallTreeManager(TQWidget*);
~CallTreeManager();
- void saveOpenDialogs(const QString&, QStringList&);
- void loadOpenDialogs(const QString&, const QStringList&);
+ void saveOpenDialogs(const TQString&, TQStringList&);
+ void loadOpenDialogs(const TQString&, const TQStringList&);
CallTreeDlg* addDialog();
void closeAll();
@@ -58,11 +58,11 @@ signals:
* @param sPath The full path of the file to show
* @param nLine The line number in this file
*/
- void lineRequested(const QString& sPath, uint nLine);
+ void lineRequested(const TQString& sPath, uint nLine);
private:
/** The list of open call tree dialogues. */
- QPtrList<CallTreeDlg> m_lstDialogs;
+ TQPtrList<CallTreeDlg> m_lstDialogs;
private slots:
void slotRemoveDialog(const CallTreeDlg*);