diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-16 13:53:18 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-16 13:53:18 -0600 |
commit | 2ecab1a194b0dc551b478820e1aaa3b8713354cc (patch) | |
tree | ae4df71ed26f3dc2dd605970d8d455165a1c8ab3 /languages/cpp/debugger/dbgtoolbar.cpp | |
parent | 549fec618f0b15c9316fc0a5ebe93c2829bc0b1b (diff) | |
download | tdevelop-2ecab1a194b0dc551b478820e1aaa3b8713354cc.tar.gz tdevelop-2ecab1a194b0dc551b478820e1aaa3b8713354cc.zip |
Additional renaming of kde to tde
Diffstat (limited to 'languages/cpp/debugger/dbgtoolbar.cpp')
-rw-r--r-- | languages/cpp/debugger/dbgtoolbar.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/languages/cpp/debugger/dbgtoolbar.cpp b/languages/cpp/debugger/dbgtoolbar.cpp index 5da4b47a..e8bb0c90 100644 --- a/languages/cpp/debugger/dbgtoolbar.cpp +++ b/languages/cpp/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 ***************************************************************************/ /*************************************************************************** @@ -51,7 +51,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 GDBDebugger { @@ -307,7 +307,7 @@ DbgToolBar::DbgToolBar(DebuggerPart* part, TQPushButton* bFinish = new DbgButton(BarIcon("dbgstepout"), i18n("Step Out"), this); TQPushButton* bRunTo = new DbgButton(BarIcon("dbgrunto"), i18n("Run to Cursor"), this); TQPushButton* bView = new DbgButton(BarIcon("dbgmemview"), i18n("Viewers"), this); - bKDevFocus_ = new DbgButton(BarIcon("kdevelop"), TQString(), this); + bKDevFocus_ = new DbgButton(BarIcon("tdevelop"), TQString(), this); bPrevFocus_ = new DbgButton(BarIcon("dbgmemview"), TQString(), this); connect(bRun, TQT_SIGNAL(clicked()), part_, TQT_SLOT(slotRun())); @@ -399,7 +399,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. |