summaryrefslogtreecommitdiffstats
path: root/languages/ruby/debugger/debuggerpart.h
diff options
context:
space:
mode:
Diffstat (limited to 'languages/ruby/debugger/debuggerpart.h')
-rw-r--r--languages/ruby/debugger/debuggerpart.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/languages/ruby/debugger/debuggerpart.h b/languages/ruby/debugger/debuggerpart.h
index 2f35df9a..637c2431 100644
--- a/languages/ruby/debugger/debuggerpart.h
+++ b/languages/ruby/debugger/debuggerpart.h
@@ -20,7 +20,7 @@
#ifndef _DEBUGGERPART_H_
#define _DEBUGGERPART_H_
-#include <qguardedptr.h>
+#include <tqguardedptr.h>
#include "kdevplugin.h"
#include "kdevcore.h"
@@ -50,14 +50,14 @@ class RubyDebuggerPart : public KDevPlugin
Q_OBJECT
public:
- RubyDebuggerPart( QObject *parent, const char *name, const QStringList & );
+ RubyDebuggerPart( TQObject *parent, const char *name, const TQStringList & );
~RubyDebuggerPart();
- virtual void restorePartialProjectSession(const QDomElement* el);
- virtual void savePartialProjectSession(QDomElement* el);
+ virtual void restorePartialProjectSession(const TQDomElement* el);
+ virtual void savePartialProjectSession(TQDomElement* el);
private slots:
void guiClientAdded(KXMLGUIClient*);
- void contextMenu(QPopupMenu *popup, const Context *context);
+ void contextMenu(TQPopupMenu *popup, const Context *context);
void toggleBreakpoint();
void contextWatch();
void contextRubyInspect();
@@ -75,12 +75,12 @@ private slots:
void slotStepOut();
void slotRefreshBPState(const Breakpoint&);
- void slotStatus(const QString &msg, int state);
- void slotShowStep(const QString &fileName, int lineNum);
- void slotGotoSource(const QString &fileName, int lineNum);
+ void slotStatus(const TQString &msg, int state);
+ void slotShowStep(const TQString &fileName, int lineNum);
+ void slotGotoSource(const TQString &fileName, int lineNum);
signals:
- void rubyInspect(const QString&);
+ void rubyInspect(const TQString&);
private:
KDevAppFrontend *appFrontend();
@@ -89,18 +89,18 @@ private:
bool startDebugger();
void setupController();
- QGuardedPtr<VariableWidget> variableWidget;
- QGuardedPtr<RDBBreakpointWidget> rdbBreakpointWidget;
- QGuardedPtr<FramestackWidget> framestackWidget;
- QGuardedPtr<RDBOutputWidget> rdbOutputWidget;
+ TQGuardedPtr<VariableWidget> variableWidget;
+ TQGuardedPtr<RDBBreakpointWidget> rdbBreakpointWidget;
+ TQGuardedPtr<FramestackWidget> framestackWidget;
+ TQGuardedPtr<RDBOutputWidget> rdbOutputWidget;
DbgController *controller;
- QGuardedPtr<QLabel> statusBarIndicator;
- QGuardedPtr<DbgToolBar> floatingToolBar;
+ TQGuardedPtr<TQLabel> statusBarIndicator;
+ TQGuardedPtr<DbgToolBar> floatingToolBar;
ProcessLineMaker* procLineMaker;
ProcessLineMaker* rdbLineMaker;
- QString m_contextIdent;
- QCString m_drkonqi;
+ TQString m_contextIdent;
+ TQCString m_drkonqi;
KDevDebugger *m_debugger;
};