summaryrefslogtreecommitdiffstats
path: root/quanta/components/debugger/backtracelistview.h
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/components/debugger/backtracelistview.h')
-rw-r--r--quanta/components/debugger/backtracelistview.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/quanta/components/debugger/backtracelistview.h b/quanta/components/debugger/backtracelistview.h
index e00d0afc..21b72d3d 100644
--- a/quanta/components/debugger/backtracelistview.h
+++ b/quanta/components/debugger/backtracelistview.h
@@ -21,7 +21,7 @@
#include <klistview.h>
#include <kpopupmenu.h>
-#include <qptrlist.h>
+#include <tqptrlist.h>
class BacktraceListview;
@@ -37,8 +37,8 @@ class BacktraceListviewItem : public KListViewItem
{
private:
BacktraceType m_type;
- QString m_filename;
- QString m_func;
+ TQString m_filename;
+ TQString m_func;
long m_line;
long m_level;
@@ -51,12 +51,12 @@ class BacktraceListviewItem : public KListViewItem
void setType(BacktraceType type) { m_type = type; }
// Filename
- QString filename() const { return m_filename; }
- void setFilename(const QString &filename) { m_filename = filename; }
+ TQString filename() const { return m_filename; }
+ void setFilename(const TQString &filename) { m_filename = filename; }
// Function
- QString func() const { return m_func; }
- void setFunc(const QString &func) { m_func = func; }
+ TQString func() const { return m_func; }
+ void setFunc(const TQString &func) { m_func = func; }
// Line
long line() const { return m_line; }
@@ -74,19 +74,19 @@ class BacktraceListview : public KListView
public:
- BacktraceListview(QWidget *parent = 0, const char *name = 0);
+ BacktraceListview(TQWidget *parent = 0, const char *name = 0);
~BacktraceListview();
- void backtraceShow(int level, BacktraceType type, const QString& filename, long line, const QString& func);
+ void backtraceShow(int level, BacktraceType type, const TQString& filename, long line, const TQString& func);
void clear();
public slots:
- void slotBacktraceDoubleClick(QListViewItem *item, const QPoint &point, int column);
+ void slotBacktraceDoubleClick(TQListViewItem *item, const TQPoint &point, int column);
private:
- void keyPressEvent(QKeyEvent *e);
- void jumpHistory(QListViewItem *item);
+ void keyPressEvent(TQKeyEvent *e);
+ void jumpHistory(TQListViewItem *item);
};