diff options
Diffstat (limited to 'src/debugwindow.cpp')
-rw-r--r-- | src/debugwindow.cpp | 6 |
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) |