summaryrefslogtreecommitdiffstats
path: root/languages/ruby/debugger/dbgtoolbar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'languages/ruby/debugger/dbgtoolbar.cpp')
-rw-r--r--languages/ruby/debugger/dbgtoolbar.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/languages/ruby/debugger/dbgtoolbar.cpp b/languages/ruby/debugger/dbgtoolbar.cpp
index 5561098b..c985fabb 100644
--- a/languages/ruby/debugger/dbgtoolbar.cpp
+++ b/languages/ruby/debugger/dbgtoolbar.cpp
@@ -118,7 +118,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 {
@@ -221,7 +221,7 @@ DbgDocker::DbgDocker(TQWidget* parent, DbgToolBar* toolBar, const TQPixmap& pixm
toolBar_(toolBar)
{
setPixmap(pixmap);
- TQToolTip::add( this, i18n("KDevelop ruby debugger: Click to execute one line of code (\"step\")") );
+ TQToolTip::add( this, i18n("TDevelop ruby debugger: Click to execute one line of code (\"step\")") );
}
// **************************************************************************
@@ -243,7 +243,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;
}
@@ -321,8 +321,8 @@ DbgToolBar::DbgToolBar(RubyDebuggerPart* part,
TQToolTip::add( bStep, i18n("Execute one line of code, stepping into methods if appropriate") );
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( 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.") );
@@ -332,8 +332,8 @@ DbgToolBar::DbgToolBar(RubyDebuggerPart* 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( 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);