summaryrefslogtreecommitdiffstats
path: root/src/debugwindow.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:03:41 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:03:41 -0600
commit17678d65de293ae9a8b077b5c0bc3f493c617f8b (patch)
treeb4131182c75a7a638f626bc3b9415b6f47ff680e /src/debugwindow.cpp
parent522c7294f06d294c77bc1ea7d0dec4b371c43373 (diff)
downloadbasket-17678d65de293ae9a8b077b5c0bc3f493c617f8b.tar.gz
basket-17678d65de293ae9a8b077b5c0bc3f493c617f8b.zip
Rename obsolete tq methods to standard names
Diffstat (limited to 'src/debugwindow.cpp')
-rw-r--r--src/debugwindow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/debugwindow.cpp b/src/debugwindow.cpp
index e86ff99..5f1b80a 100644
--- a/src/debugwindow.cpp
+++ b/src/debugwindow.cpp
@@ -33,19 +33,19 @@ DebugWindow::DebugWindow(TQWidget *parent, const char *name )
Global::debugWindow = this;
setCaption(i18n("Debug Window"));
- tqlayout = new TQVBoxLayout(this);
+ layout = new TQVBoxLayout(this);
textBrowser = new TQTextBrowser(this);
textBrowser->setWordWrap(TQTextBrowser::NoWrap);
- tqlayout->addWidget(textBrowser);
+ layout->addWidget(textBrowser);
textBrowser->show();
}
DebugWindow::~DebugWindow()
{
delete textBrowser;
- delete tqlayout;
+ delete layout;
}
void DebugWindow::postMessage(const TQString msg)