From 17678d65de293ae9a8b077b5c0bc3f493c617f8b Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 21 Dec 2011 14:03:41 -0600 Subject: Rename obsolete tq methods to standard names --- src/debugwindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/debugwindow.cpp') 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) -- cgit v1.2.3