summaryrefslogtreecommitdiffstats
path: root/languages/cpp/debugger
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-07-04 16:46:19 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-07-04 16:46:19 -0500
commit998ebd2e683e45140493910f76e692e96887b5d2 (patch)
tree4d75be7d82ab9ba5ebd7c95c5b64a265971183d2 /languages/cpp/debugger
parent9ba3adb356665bc27c3416c0b916efa89b366bde (diff)
downloadtdevelop-998ebd2e683e45140493910f76e692e96887b5d2.tar.gz
tdevelop-998ebd2e683e45140493910f76e692e96887b5d2.zip
Fix help files, kdevelop->tdevelop branding, fix startup.
Diffstat (limited to 'languages/cpp/debugger')
-rw-r--r--languages/cpp/debugger/dbgtoolbar.cpp14
-rw-r--r--languages/cpp/debugger/debuggerpart.cpp4
2 files changed, 9 insertions, 9 deletions
diff --git a/languages/cpp/debugger/dbgtoolbar.cpp b/languages/cpp/debugger/dbgtoolbar.cpp
index 0ee45b63..8933ea12 100644
--- a/languages/cpp/debugger/dbgtoolbar.cpp
+++ b/languages/cpp/debugger/dbgtoolbar.cpp
@@ -112,7 +112,7 @@ void DbgMoveHandle::mousePressEvent(TQMouseEvent *e)
menu->insertTitle(i18n("Debug Toolbar"));
menu->insertItem(i18n("Dock to Panel"),
parent(), TQT_SLOT(slotDock()));
- menu->insertItem(i18n("Dock to Panel && Iconify KDevelop"),
+ menu->insertItem(i18n("Dock to Panel && Iconify TDevelop"),
parent(), TQT_SLOT(slotIconifyAndDock()));
menu->popup(e->globalPos());
} else {
@@ -222,7 +222,7 @@ DbgDocker::DbgDocker(TQWidget* parent, DbgToolBar* toolBar, const TQPixmap& pixm
toolBar_(toolBar)
{
setPixmap(pixmap);
- TQToolTip::add( this, i18n("KDevelop debugger: Click to execute one line of code (\"step\")") );
+ TQToolTip::add( this, i18n("TDevelop debugger: Click to execute one line of code (\"step\")") );
}
// **************************************************************************
@@ -244,7 +244,7 @@ void DbgDocker::mousePressEvent(TQMouseEvent *e)
KPopupMenu* menu = new KPopupMenu(this);
menu->insertTitle(i18n("Debug Toolbar"));
menu->insertItem(i18n("Activate"), toolBar_, TQT_SLOT(slotUndock()));
- menu->insertItem(i18n("Activate (KDevelop gets focus)"), toolBar_, TQT_SLOT(slotActivateAndUndock()));
+ menu->insertItem(i18n("Activate (TDevelop gets focus)"), toolBar_, TQT_SLOT(slotActivateAndUndock()));
menu->popup(e->globalPos());
break;
}
@@ -331,8 +331,8 @@ DbgToolBar::DbgToolBar(DebuggerPart* part,
TQToolTip::add( bFinish, i18n("Execute to end of current stack frame") );
TQToolTip::add( bRunTo, i18n("Continues execution until the cursor position is reached.") );
TQToolTip::add( bView, i18n("Memory, dissemble, registers, library viewers") );
- TQToolTip::add( bKDevFocus_, i18n("Set focus on KDevelop") );
- TQToolTip::add( bPrevFocus_, i18n("Set focus on window that had focus when KDevelop got focus") );
+ TQToolTip::add( bKDevFocus_, i18n("Set focus on TDevelop") );
+ TQToolTip::add( bPrevFocus_, i18n("Set focus on window that had focus when TDevelop got focus") );
TQWhatsThis::add( bRun, i18n("Continue with application execution. May start the application.") );
TQWhatsThis::add( bInterrupt, i18n("Interrupt the application execution.") );
@@ -343,8 +343,8 @@ DbgToolBar::DbgToolBar(DebuggerPart* part,
TQWhatsThis::add( bFinish, i18n("Execute to end of current stack frame.") );
TQWhatsThis::add( bRunTo, i18n("Continues execution until the cursor position is reached.") );
TQWhatsThis::add( bView, i18n("Memory, dissemble, registers, library viewers.") );
- TQWhatsThis::add( bKDevFocus_, i18n("Set focus on KDevelop.") );
- TQWhatsThis::add( bPrevFocus_, i18n("Set focus on window that had focus when KDevelop got focus.") );
+ TQWhatsThis::add( bKDevFocus_, i18n("Set focus on TDevelop.") );
+ TQWhatsThis::add( bPrevFocus_, i18n("Set focus on window that had focus when TDevelop got focus.") );
topLayout->addWidget(moveHandle);
topLayout->addWidget(bRun);
diff --git a/languages/cpp/debugger/debuggerpart.cpp b/languages/cpp/debugger/debuggerpart.cpp
index fb1577d4..699b28dd 100644
--- a/languages/cpp/debugger/debuggerpart.cpp
+++ b/languages/cpp/debugger/debuggerpart.cpp
@@ -396,7 +396,7 @@ void DebuggerPart::slotDCOPApplicationRegistered(const TQCString& appId)
d >> appName;
if (appName.length() && project() && project()->mainProgram().endsWith(appName)) {
- kapp->dcopClient()->send(appId, "krashinfo", "registerDebuggingApplication(TQString)", i18n("Debug in &KDevelop"));
+ kapp->dcopClient()->send(appId, "krashinfo", "registerDebuggingApplication(TQString)", i18n("Debug in &TDevelop"));
connectDCOPSignal(appId, "krashinfo", "acceptDebuggingApplication()", "slotDebugExternalProcess()", true);
}
}
@@ -1261,7 +1261,7 @@ bool DebuggerPart::haveModifiedFiles()
KDevAppFrontend * GDBDebugger::DebuggerPart::appFrontend( )
{
- return extension<KDevAppFrontend>("KDevelop/AppFrontend");
+ return extension<KDevAppFrontend>("TDevelop/AppFrontend");
}
KDevDebugger * GDBDebugger::DebuggerPart::debugger()