diff options
Diffstat (limited to 'src/calltreemanager.h')
-rw-r--r-- | src/calltreemanager.h | 16 |
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*); |