diff options
Diffstat (limited to 'languages/lib/debugger/kdevdebugger.cpp')
-rw-r--r-- | languages/lib/debugger/kdevdebugger.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/languages/lib/debugger/kdevdebugger.cpp b/languages/lib/debugger/kdevdebugger.cpp index d5c4e3b5..b9ee4a05 100644 --- a/languages/lib/debugger/kdevdebugger.cpp +++ b/languages/lib/debugger/kdevdebugger.cpp @@ -19,8 +19,8 @@ */ #include "kdevdebugger.h" -KDevDebugger::KDevDebugger(QObject *parent, const char *name) - : QObject(parent, name) +KDevDebugger::KDevDebugger(TQObject *parent, const char *name) + : TQObject(parent, name) { } @@ -29,7 +29,7 @@ KDevDebugger::~KDevDebugger() { } -const QPixmap* KDevDebugger::inactiveBreakpointPixmap() +const TQPixmap* KDevDebugger::inactiveBreakpointPixmap() { const char*breakpoint_gr_xpm[]={ "11 16 6 1", @@ -55,11 +55,11 @@ const QPixmap* KDevDebugger::inactiveBreakpointPixmap() "...........", "...........", "..........."}; - static QPixmap pixmap( breakpoint_gr_xpm ); + static TQPixmap pixmap( breakpoint_gr_xpm ); return &pixmap; } -const QPixmap* KDevDebugger::activeBreakpointPixmap() +const TQPixmap* KDevDebugger::activeBreakpointPixmap() { const char* breakpoint_xpm[]={ "11 16 6 1", @@ -85,11 +85,11 @@ const QPixmap* KDevDebugger::activeBreakpointPixmap() "...........", "...........", "..........."}; - static QPixmap pixmap( breakpoint_xpm ); + static TQPixmap pixmap( breakpoint_xpm ); return &pixmap; } -const QPixmap* KDevDebugger::reachedBreakpointPixmap() +const TQPixmap* KDevDebugger::reachedBreakpointPixmap() { const char*breakpoint_bl_xpm[]={ "11 16 7 1", @@ -116,11 +116,11 @@ const QPixmap* KDevDebugger::reachedBreakpointPixmap() "...........", "...........", "..........."}; - static QPixmap pixmap( breakpoint_bl_xpm ); + static TQPixmap pixmap( breakpoint_bl_xpm ); return &pixmap; } -const QPixmap* KDevDebugger::disabledBreakpointPixmap() +const TQPixmap* KDevDebugger::disabledBreakpointPixmap() { const char*breakpoint_wh_xpm[]={ "11 16 7 1", @@ -147,11 +147,11 @@ const QPixmap* KDevDebugger::disabledBreakpointPixmap() "...........", "...........", "..........."}; - static QPixmap pixmap( breakpoint_wh_xpm ); + static TQPixmap pixmap( breakpoint_wh_xpm ); return &pixmap; } -const QPixmap* KDevDebugger::executionPointPixmap() +const TQPixmap* KDevDebugger::executionPointPixmap() { const char*exec_xpm[]={ "11 16 4 1", @@ -175,7 +175,7 @@ const QPixmap* KDevDebugger::executionPointPixmap() "...........", "...........", "..........."}; - static QPixmap pixmap( exec_xpm ); + static TQPixmap pixmap( exec_xpm ); return &pixmap; } |