diff options
Diffstat (limited to 'languages/lib/debugger/kdevdebugger.h')
| -rw-r--r-- | languages/lib/debugger/kdevdebugger.h | 24 | 
1 files changed, 12 insertions, 12 deletions
| diff --git a/languages/lib/debugger/kdevdebugger.h b/languages/lib/debugger/kdevdebugger.h index d0b87721..288854e5 100644 --- a/languages/lib/debugger/kdevdebugger.h +++ b/languages/lib/debugger/kdevdebugger.h @@ -21,8 +21,8 @@  #define _KDEVDEBUGGER_H_ -#include <qobject.h> -#include <qpixmap.h> +#include <tqobject.h> +#include <tqpixmap.h>  #include <kurl.h> @@ -37,14 +37,14 @@ class KDevDebugger : public QObject  public: -  KDevDebugger(QObject *parent=0, const char *name=0); +  KDevDebugger(TQObject *parent=0, const char *name=0);    ~KDevDebugger();    /**     * Sets a breakpoint in the editor document belong to fileName.     * If id==-1, the breakpoint is deleted.     */ -  virtual void setBreakpoint(const QString &fileName, int lineNum, +  virtual void setBreakpoint(const TQString &fileName, int lineNum,                               int id, bool enabled, bool pending) = 0;    /** @@ -59,28 +59,28 @@ public:     */    virtual void clearExecutionPoint() = 0; -  static const QPixmap* inactiveBreakpointPixmap(); -  static const QPixmap* activeBreakpointPixmap(); -  static const QPixmap* reachedBreakpointPixmap(); -  static const QPixmap* disabledBreakpointPixmap(); -  static const QPixmap* executionPointPixmap(); +  static const TQPixmap* inactiveBreakpointPixmap(); +  static const TQPixmap* activeBreakpointPixmap(); +  static const TQPixmap* reachedBreakpointPixmap(); +  static const TQPixmap* disabledBreakpointPixmap(); +  static const TQPixmap* executionPointPixmap();  signals:    /**     * The user has toggled a breakpoint.     */ -  void toggledBreakpoint(const QString &fileName, int lineNum); +  void toggledBreakpoint(const TQString &fileName, int lineNum);    /*     * The user wants to edit the properties of a breakpoint.     */ -  void editedBreakpoint(const QString &fileName, int lineNum); +  void editedBreakpoint(const TQString &fileName, int lineNum);    /**     * The user wants to enable/disable a breakpoint.     */ -  void toggledBreakpointEnabled(const QString &fileName, int lineNum); +  void toggledBreakpointEnabled(const TQString &fileName, int lineNum);  }; | 
