diff options
Diffstat (limited to 'languages/ruby/debugger/framestackwidget.h')
-rw-r--r-- | languages/ruby/debugger/framestackwidget.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/languages/ruby/debugger/framestackwidget.h b/languages/ruby/debugger/framestackwidget.h index 373d0690..b000f042 100644 --- a/languages/ruby/debugger/framestackwidget.h +++ b/languages/ruby/debugger/framestackwidget.h @@ -22,8 +22,8 @@ #ifndef _FRAMESTACKWIDGET_H_ #define _FRAMESTACKWIDGET_H_ -#include <qlistview.h> -#include <qstringlist.h> +#include <tqlistview.h> +#include <tqstringlist.h> #include "rdbcontroller.h" @@ -36,7 +36,7 @@ class FramestackWidget; class ThreadStackItem : public QListViewItem { public: - ThreadStackItem(FramestackWidget *parent, int threadNo, const QString &threadDesc); + ThreadStackItem(FramestackWidget *parent, int threadNo, const TQString &threadDesc); virtual ~ThreadStackItem(); virtual int rtti() const { return RTTI_THREAD_STACK_ITEM; } @@ -55,21 +55,21 @@ private: class FrameStackItem : public QListViewItem { public: - FrameStackItem(ThreadStackItem * parent, int frameNo, const QString & frameDesc, const QString & frameName); + FrameStackItem(ThreadStackItem * parent, int frameNo, const TQString & frameDesc, const TQString & frameName); virtual ~FrameStackItem(); virtual int rtti() const { return RTTI_FRAME_STACK_ITEM; } - virtual QString key(int column, bool ascending) const; + virtual TQString key(int column, bool ascending) const; int frameNo() { return frameNo_; } int threadNo() { return threadNo_; } - QString frameName() { return frameName_; } + TQString frameName() { return frameName_; } private: int frameNo_; int threadNo_; - QString frameName_; - QString key_; + TQString frameName_; + TQString key_; }; /***************************************************************************/ @@ -84,7 +84,7 @@ class FramestackWidget : public QListView Q_OBJECT public: - FramestackWidget( QWidget *parent=0, const char *name=0, WFlags f=0 ); + FramestackWidget( TQWidget *parent=0, const char *name=0, WFlags f=0 ); virtual ~FramestackWidget(); void clear(); @@ -100,11 +100,11 @@ public: public slots: void slotSelectFrame(int frameNo, int threadNo); - void slotSelectionChanged(QListViewItem *thisItem); + void slotSelectionChanged(TQListViewItem *thisItem); signals: - void selectFrame(int frameNo, int threadNo, const QString& frameName); - void frameActive(int frameNo, int threadNo, const QString& frameName); + void selectFrame(int frameNo, int threadNo, const TQString& frameName); + void frameActive(int frameNo, int threadNo, const TQString& frameName); private: ThreadStackItem *viewedThread_; |