diff options
Diffstat (limited to 'languages/cpp/debugger/framestackwidget.h')
-rw-r--r-- | languages/cpp/debugger/framestackwidget.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/languages/cpp/debugger/framestackwidget.h b/languages/cpp/debugger/framestackwidget.h index 36cac1ba..656d2cdb 100644 --- a/languages/cpp/debugger/framestackwidget.h +++ b/languages/cpp/debugger/framestackwidget.h @@ -16,8 +16,8 @@ #ifndef _FRAMESTACKWIDGET_H_ #define _FRAMESTACKWIDGET_H_ -#include <qlistview.h> -#include <qstringlist.h> +#include <tqlistview.h> +#include <tqstringlist.h> #include "gdbcontroller.h" #include "mi/miparser.h" @@ -38,9 +38,9 @@ public: virtual ~ThreadStackItem(); void setOpen(bool open); - QListViewItem *lastChild() const; + TQListViewItem *lastChild() const; - void paintCell(QPainter * p, const QColorGroup & cg, + void paintCell(TQPainter * p, const TQColorGroup & cg, int column, int width, int align ); int threadNo() @@ -48,8 +48,8 @@ public: private: int threadNo_; - QString savedFunc_; - QString savedSource_; + TQString savedFunc_; + TQString savedSource_; }; /***************************************************************************/ @@ -61,16 +61,16 @@ class FrameStackItem : public QListViewItem public: FrameStackItem(FramestackWidget *parent, unsigned frameNo, - const QString &name); + const TQString &name); FrameStackItem(ThreadStackItem *parent, unsigned frameNo, - const QString &name); + const TQString &name); virtual ~FrameStackItem(); void setOpen(bool open); - QListViewItem *lastChild() const; + TQListViewItem *lastChild() const; - void paintCell(QPainter * p, const QColorGroup & cg, + void paintCell(TQPainter * p, const TQColorGroup & cg, int column, int width, int align ); int frameNo() @@ -94,11 +94,11 @@ class FramestackWidget : public QListView public: FramestackWidget( GDBController* controller, - QWidget *parent=0, + TQWidget *parent=0, const char *name=0, WFlags f=0 ); virtual ~FramestackWidget(); - QListViewItem *lastChild() const; + TQListViewItem *lastChild() const; ThreadStackItem *findThread(int threadNo); FrameStackItem *findFrame(int frameNo, int threadNo); @@ -108,7 +108,7 @@ public: protected: - void drawContentsOffset( QPainter * p, int ox, int oy, + void drawContentsOffset( TQPainter * p, int ox, int oy, int cx, int cy, int cw, int ch ); @@ -120,8 +120,8 @@ private: The function is used both for frames and threads. */ void formatFrame(const GDBMI::Value& frame, - QString& func_column, - QString& source_column); + TQString& func_column, + TQString& source_column); /** Cause gdb to produce backtrace for the current thread. @@ -148,13 +148,13 @@ private: public slots: void slotEvent(GDBController::event_t e); - void slotSelectionChanged(QListViewItem *thisItem); + void slotSelectionChanged(TQListViewItem *thisItem); #if QT_VERSION < 300 private: - QListViewItem* findItemWhichBeginsWith(const QString& text) const; + TQListViewItem* findItemWhichBeginsWith(const TQString& text) const; #endif - virtual void showEvent(QShowEvent*); + virtual void showEvent(TQShowEvent*); private: |