summaryrefslogtreecommitdiffstats
path: root/src/debugwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/debugwindow.cpp')
-rw-r--r--src/debugwindow.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/debugwindow.cpp b/src/debugwindow.cpp
index 631a300..e86ff99 100644
--- a/src/debugwindow.cpp
+++ b/src/debugwindow.cpp
@@ -18,8 +18,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
-#include <layout.h>
-#include <textbrowser.h>
+#include <tqlayout.h>
+#include <tqtextbrowser.h>
#include <tqstring.h>
#include <tqevent.h>
#include <klocale.h>
@@ -33,19 +33,19 @@ DebugWindow::DebugWindow(TQWidget *parent, const char *name )
Global::debugWindow = this;
setCaption(i18n("Debug Window"));
- layout = new TQVBoxLayout(this);
+ tqlayout = new TQVBoxLayout(this);
textBrowser = new TQTextBrowser(this);
textBrowser->setWordWrap(TQTextBrowser::NoWrap);
- layout->addWidget(textBrowser);
+ tqlayout->addWidget(textBrowser);
textBrowser->show();
}
DebugWindow::~DebugWindow()
{
delete textBrowser;
- delete layout;
+ delete tqlayout;
}
void DebugWindow::postMessage(const TQString msg)