summaryrefslogtreecommitdiffstats
path: root/languages/cpp/debugger/gdboutputwidget.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commit539a1fd1ae6290cc3eec745226c0ce45b02c1545 (patch)
treee1cf785f3b349d568bade07dccdb5b39eb862331 /languages/cpp/debugger/gdboutputwidget.cpp
parent82324bf130254bac6932131a55607c866773ca84 (diff)
downloadtdevelop-539a1fd1ae6290cc3eec745226c0ce45b02c1545.tar.gz
tdevelop-539a1fd1ae6290cc3eec745226c0ce45b02c1545.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'languages/cpp/debugger/gdboutputwidget.cpp')
-rw-r--r--languages/cpp/debugger/gdboutputwidget.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/languages/cpp/debugger/gdboutputwidget.cpp b/languages/cpp/debugger/gdboutputwidget.cpp
index 7877a92c..ba51e871 100644
--- a/languages/cpp/debugger/gdboutputwidget.cpp
+++ b/languages/cpp/debugger/gdboutputwidget.cpp
@@ -327,7 +327,7 @@ TQPopupMenu* OutputText::createPopupMenu(const TQPoint&)
this,
TQT_SLOT(toggleShowInternalCommands()));
- popup->setItemChecked(id, tqparent_->showInternalCommands_);
+ popup->setItemChecked(id, parent_->showInternalCommands_);
popup->tqsetWhatsThis(
id,
i18n(
@@ -348,8 +348,8 @@ void OutputText::copyAll()
{
/* See comments for allCommandRaw_ for explanations of
this complex logic, as opposed to calling text(). */
- TQStringList& raw = tqparent_->showInternalCommands_ ?
- tqparent_->allCommandsRaw_ : tqparent_->userCommandsRaw_;
+ TQStringList& raw = parent_->showInternalCommands_ ?
+ parent_->allCommandsRaw_ : parent_->userCommandsRaw_;
TQString text;
for (unsigned i = 0; i < raw.size(); ++i)
text += raw[i];
@@ -362,7 +362,7 @@ void OutputText::copyAll()
void OutputText::toggleShowInternalCommands()
{
- tqparent_->setShowInternalCommands(!tqparent_->showInternalCommands_);
+ parent_->setShowInternalCommands(!parent_->showInternalCommands_);
}