diff options
Diffstat (limited to 'languages/ruby/debugger/dbgtoolbar.cpp')
-rw-r--r-- | languages/ruby/debugger/dbgtoolbar.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/languages/ruby/debugger/dbgtoolbar.cpp b/languages/ruby/debugger/dbgtoolbar.cpp index 0b96201f..3b13b148 100644 --- a/languages/ruby/debugger/dbgtoolbar.cpp +++ b/languages/ruby/debugger/dbgtoolbar.cpp @@ -1,7 +1,7 @@ /*************************************************************************** begin : Thu Dec 23 1999 copyright : (C) 1999 by John Birch - email : jbb@kdevelop.org + email : jbb@tdevelop.org Adapted for ruby debugging -------------------------- @@ -57,7 +57,7 @@ // So, if you can get it to work as a KToolBar, and it works well when the // app is running, then all these classes can be removed. -// This code is very specific to the internal debugger in kdevelop. +// This code is very specific to the internal debugger in tdevelop. namespace RDBDebugger { @@ -304,7 +304,7 @@ DbgToolBar::DbgToolBar(RubyDebuggerPart* part, TQPushButton* bFinish = new DbgButton(BarIcon("dbgstepout"), i18n("Step Out"), this); TQPushButton* bRunTo = new DbgButton(BarIcon("dbgrunto"), i18n("Run to Cursor"), this); bPrevFocus_ = new DbgButton(BarIcon("dbgmemview"), TQString(), this); - bKDevFocus_ = new DbgButton(BarIcon("kdevelop"), TQString(), this); + bKDevFocus_ = new DbgButton(BarIcon("tdevelop"), TQString(), this); connect(bRun, TQT_SIGNAL(clicked()), part_, TQT_SLOT(slotRun())); connect(bInterrupt, TQT_SIGNAL(clicked()), part_, TQT_SLOT(slotPause())); @@ -385,7 +385,7 @@ void DbgToolBar::slotKdevFocus() { // I really want to be able to set the focus on the _application_ being debugged // but this is the best compromise I can come up with. All we do is save the - // window that had focus when they switch to the kdevelop window. To do this + // window that had focus when they switch to the tdevelop window. To do this // the toolbar _cannot_ accept focus. // If anyone has a way of determining what window the app is _actually_ running on // then please fix and send a patch. |