summaryrefslogtreecommitdiffstats
path: root/languages/ruby/debugger/debuggerpart.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'languages/ruby/debugger/debuggerpart.cpp')
-rw-r--r--languages/ruby/debugger/debuggerpart.cpp38
1 files changed, 19 insertions, 19 deletions
diff --git a/languages/ruby/debugger/debuggerpart.cpp b/languages/ruby/debugger/debuggerpart.cpp
index 35e6a2d2..9d0c9767 100644
--- a/languages/ruby/debugger/debuggerpart.cpp
+++ b/languages/ruby/debugger/debuggerpart.cpp
@@ -26,7 +26,7 @@
#include <tdeaction.h>
#include <kdebug.h>
#include <tdefiledialog.h>
-#include <kdevgenericfactory.h>
+#include <tdevgenericfactory.h>
#include <kiconloader.h>
#include <tdelocale.h>
#include <tdemainwindow.h>
@@ -40,12 +40,12 @@
#include <kstringhandler.h>
#include <kstandarddirs.h>
-#include "kdevcore.h"
-#include "kdevproject.h"
-#include "kdevmainwindow.h"
-#include "kdevappfrontend.h"
-#include "kdevpartcontroller.h"
-#include "kdevdebugger.h"
+#include "tdevcore.h"
+#include "tdevproject.h"
+#include "tdevmainwindow.h"
+#include "tdevappfrontend.h"
+#include "tdevpartcontroller.h"
+#include "tdevdebugger.h"
#include "domutil.h"
#include "variablewidget.h"
#include "rdbbreakpointwidget.h"
@@ -61,25 +61,25 @@
#include <iostream>
-#include <kdevplugininfo.h>
+#include <tdevplugininfo.h>
#include <debugger.h>
namespace RDBDebugger
{
-static const KDevPluginInfo data("kdevrbdebugger");
+static const TDevPluginInfo data("tdevrbdebugger");
-typedef KDevGenericFactory<RubyDebuggerPart> RubyDebuggerFactory;
-K_EXPORT_COMPONENT_FACTORY( libkdevrbdebugger, RubyDebuggerFactory( data ) )
+typedef TDevGenericFactory<RubyDebuggerPart> RubyDebuggerFactory;
+K_EXPORT_COMPONENT_FACTORY( libtdevrbdebugger, RubyDebuggerFactory( data ) )
RubyDebuggerPart::RubyDebuggerPart( TQObject *parent, const char *name, const TQStringList & ) :
- KDevPlugin( &data, parent, name ? name : "RubyDebuggerPart" ),
+ TDevPlugin( &data, parent, name ? name : "RubyDebuggerPart" ),
controller(0)
{
// setObjId("RubyDebuggerInterface");
setInstance(RubyDebuggerFactory::instance());
- setXMLFile("kdevrbdebugger.rc");
+ setXMLFile("tdevrbdebugger.rc");
m_debugger = new Debugger( partController() );
@@ -245,8 +245,8 @@ RubyDebuggerPart::RubyDebuggerPart( TQObject *parent, const char *name, const TQ
connect( core(), TQT_SIGNAL(contextMenu(TQPopupMenu *, const Context *)),
this, TQT_SLOT(contextMenu(TQPopupMenu *, const Context *)) );
- connect( core(), TQT_SIGNAL(stopButtonClicked(KDevPlugin*)),
- this, TQT_SLOT(slotStop(KDevPlugin*)) );
+ connect( core(), TQT_SIGNAL(stopButtonClicked(TDevPlugin*)),
+ this, TQT_SLOT(slotStop(TDevPlugin*)) );
connect( core(), TQT_SIGNAL(projectClosed()),
this, TQT_SLOT(projectClosed()) );
@@ -616,7 +616,7 @@ void RubyDebuggerPart::slotRun()
-void RubyDebuggerPart::slotStop(KDevPlugin* which)
+void RubyDebuggerPart::slotStop(TDevPlugin* which)
{
if( which != 0 && which != this )
return;
@@ -772,12 +772,12 @@ void RubyDebuggerPart::savePartialProjectSession(TQDomElement* el)
}
-KDevAppFrontend * RDBDebugger::RubyDebuggerPart::appFrontend( )
+TDevAppFrontend * RDBDebugger::RubyDebuggerPart::appFrontend( )
{
- return extension<KDevAppFrontend>("TDevelop/AppFrontend");
+ return extension<TDevAppFrontend>("TDevelop/AppFrontend");
}
-KDevDebugger * RDBDebugger::RubyDebuggerPart::debugger()
+TDevDebugger * RDBDebugger::RubyDebuggerPart::debugger()
{
return m_debugger;
}