summaryrefslogtreecommitdiffstats
path: root/languages/ruby
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/ruby
parent9ba3adb356665bc27c3416c0b916efa89b366bde (diff)
downloadtdevelop-998ebd2e683e45140493910f76e692e96887b5d2.tar.gz
tdevelop-998ebd2e683e45140493910f76e692e96887b5d2.zip
Fix help files, kdevelop->tdevelop branding, fix startup.
Diffstat (limited to 'languages/ruby')
-rw-r--r--languages/ruby/README2
-rw-r--r--languages/ruby/debugger/dbgtoolbar.cpp14
-rw-r--r--languages/ruby/debugger/debuggerpart.cpp2
-rw-r--r--languages/ruby/rubysupport_part.cpp10
4 files changed, 14 insertions, 14 deletions
diff --git a/languages/ruby/README b/languages/ruby/README
index 7df3c4b5..731741e1 100644
--- a/languages/ruby/README
+++ b/languages/ruby/README
@@ -1,3 +1,3 @@
Please read the on-line, automaticaly updated KDevelop API documentation at:
-http://www.tdevelop.org
+http://www.kdevelop.org
or read the README.dox file.
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<KDevAppFrontend>("KDevelop/AppFrontend");
+ return extension<KDevAppFrontend>("TDevelop/AppFrontend");
}
KDevDebugger * RDBDebugger::RubyDebuggerPart::debugger()
diff --git a/languages/ruby/rubysupport_part.cpp b/languages/ruby/rubysupport_part.cpp
index 664dabd4..9de81db4 100644
--- a/languages/ruby/rubysupport_part.cpp
+++ b/languages/ruby/rubysupport_part.cpp
@@ -127,7 +127,7 @@ void RubySupportPart::projectOpened()
TQFileInfo server(project()->projectDirectory() + "/script/server");
if (! server.exists()) {
cmd += "rails " + project()->projectDirectory();
- if (KDevAppFrontend *appFrontend = extension<KDevAppFrontend>("KDevelop/AppFrontend"))
+ if (KDevAppFrontend *appFrontend = extension<KDevAppFrontend>("TDevelop/AppFrontend"))
appFrontend->startAppCommand(project()->projectDirectory(), cmd, false);
}
}
@@ -528,7 +528,7 @@ void RubySupportPart::slotRun ()
// Starting WEBrick for a Rails app. Translate a SIGTERM signal sent by KDevelop
// to a SIGINT expected by WEBrick (ie control&c) to terminate it.
cmd += "script/server& \n trap \"kill -s SIGINT $!\" TERM \n wait \n exit 0";
- if (KDevAppFrontend *appFrontend = extension<KDevAppFrontend>("KDevelop/AppFrontend"))
+ if (KDevAppFrontend *appFrontend = extension<KDevAppFrontend>("TDevelop/AppFrontend"))
appFrontend->startAppCommand(project()->projectDirectory(), cmd, false);
} else {
TQString cmd = TQString("%1 -K%2 -C\"%3\" -I\"%4\" \"%5\" %6")
@@ -613,7 +613,7 @@ TQString RubySupportPart::characterCoding() {
void RubySupportPart::startApplication(const TQString &program) {
bool inTerminal = DomUtil::readBoolEntry(*projectDom(), "/kdevrubysupport/run/terminal");
- if (KDevAppFrontend *appFrontend = extension<KDevAppFrontend>("KDevelop/AppFrontend"))
+ if (KDevAppFrontend *appFrontend = extension<KDevAppFrontend>("TDevelop/AppFrontend"))
appFrontend->startAppCommand(TQString(), program, inTerminal);
}
@@ -775,7 +775,7 @@ void RubySupportPart::slotSwitchToTest()
if (TQFile::exists(integrationTestS)) urls << KURL::fromPathOrURL(integrationTestS);
if (TQFile::exists(unitTestS)) urls << KURL::fromPathOrURL(unitTestS);
- KDevQuickOpen *qo = extension<KDevQuickOpen>("KDevelop/QuickOpen");
+ KDevQuickOpen *qo = extension<KDevQuickOpen>("TDevelop/QuickOpen");
if (qo && !urls.isEmpty())
qo->quickOpenFile(urls);
}
@@ -867,7 +867,7 @@ void RubySupportPart::slotSwitchToView()
if ( !(viewName.endsWith("~") || viewName == "." || viewName == "..") )
urls << KURL::fromPathOrURL(viewsDir.absPath() + "/" + viewName);
}
- KDevQuickOpen *qo = extension<KDevQuickOpen>("KDevelop/QuickOpen");
+ KDevQuickOpen *qo = extension<KDevQuickOpen>("TDevelop/QuickOpen");
if (qo)
qo->quickOpenFile(urls);
}