From 998ebd2e683e45140493910f76e692e96887b5d2 Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Wed, 4 Jul 2012 16:46:19 -0500 Subject: Fix help files, kdevelop->tdevelop branding, fix startup. --- languages/ruby/debugger/dbgtoolbar.cpp | 14 +++++++------- languages/ruby/debugger/debuggerpart.cpp | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'languages/ruby/debugger') 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); diff --git a/languages/ruby/debugger/debuggerpart.cpp b/languages/ruby/debugger/debuggerpart.cpp index 5d468de7..4da31204 100644 --- a/languages/ruby/debugger/debuggerpart.cpp +++ b/languages/ruby/debugger/debuggerpart.cpp @@ -774,7 +774,7 @@ void RubyDebuggerPart::savePartialProjectSession(TQDomElement* el) KDevAppFrontend * RDBDebugger::RubyDebuggerPart::appFrontend( ) { - return extension("KDevelop/AppFrontend"); + return extension("TDevelop/AppFrontend"); } KDevDebugger * RDBDebugger::RubyDebuggerPart::debugger() -- cgit v1.2.1