diff options
Diffstat (limited to 'languages/cpp/debugger/debuggerpart.h')
-rw-r--r-- | languages/cpp/debugger/debuggerpart.h | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/languages/cpp/debugger/debuggerpart.h b/languages/cpp/debugger/debuggerpart.h index afb3b340..c20b1f39 100644 --- a/languages/cpp/debugger/debuggerpart.h +++ b/languages/cpp/debugger/debuggerpart.h @@ -14,7 +14,7 @@ #ifndef _DEBUGGERPART_H_ #define _DEBUGGERPART_H_ -#include <qguardedptr.h> +#include <tqguardedptr.h> #include "kdevplugin.h" #include "kdevcore.h" @@ -49,19 +49,19 @@ class DebuggerPart : public KDevPlugin, virtual public DebuggerDCOPInterface Q_OBJECT public: - DebuggerPart( QObject *parent, const char *name, const QStringList & ); + DebuggerPart( TQObject *parent, const char *name, const TQStringList & ); ~DebuggerPart(); - virtual void restorePartialProjectSession(const QDomElement* el); - virtual void savePartialProjectSession(QDomElement* el); + virtual void restorePartialProjectSession(const TQDomElement* el); + virtual void savePartialProjectSession(TQDomElement* el); k_dcop: virtual ASYNC slotDebugExternalProcess(); - virtual ASYNC slotDebugCommandLine(const QString& command); + virtual ASYNC slotDebugCommandLine(const TQString& command); private slots: void setupDcop(); void guiClientAdded(KXMLGUIClient*); - void contextMenu(QPopupMenu *popup, const Context *context); + void contextMenu(TQPopupMenu *popup, const Context *context); void toggleBreakpoint(); void contextEvaluate(); void contextWatch(); @@ -94,11 +94,11 @@ private slots: 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); - void slotDCOPApplicationRegistered(const QCString &appId); + void slotDCOPApplicationRegistered(const TQCString &appId); void slotCloseDrKonqi(); // Hide or show the view that's the sender of this signal. @@ -123,20 +123,20 @@ private: void setupController(); bool haveModifiedFiles(); - QGuardedPtr<VariableWidget> variableWidget; - QGuardedPtr<GDBBreakpointWidget> gdbBreakpointWidget; - QGuardedPtr<FramestackWidget> framestackWidget; - QGuardedPtr<DisassembleWidget> disassembleWidget; - QGuardedPtr<GDBOutputWidget> gdbOutputWidget; - QGuardedPtr<ViewerWidget> viewerWidget; + TQGuardedPtr<VariableWidget> variableWidget; + TQGuardedPtr<GDBBreakpointWidget> gdbBreakpointWidget; + TQGuardedPtr<FramestackWidget> framestackWidget; + TQGuardedPtr<DisassembleWidget> disassembleWidget; + TQGuardedPtr<GDBOutputWidget> gdbOutputWidget; + TQGuardedPtr<ViewerWidget> viewerWidget; GDBController *controller; - QGuardedPtr<QLabel> statusBarIndicator; - QGuardedPtr<DbgToolBar> floatingToolBar; + TQGuardedPtr<TQLabel> statusBarIndicator; + TQGuardedPtr<DbgToolBar> floatingToolBar; ProcessLineMaker* procLineMaker; ProcessLineMaker* gdbLineMaker; - QString m_contextIdent; - QCString m_drkonqi; + TQString m_contextIdent; + TQCString m_drkonqi; KDevDebugger *m_debugger; int previousDebuggerState_; |