summaryrefslogtreecommitdiffstats
path: root/src/debugwindow.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:29:20 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:29:20 -0600
commit882bcd26b3d60be72ea2b35921969a9850c52db9 (patch)
tree8d0a6902c5de4632c4e73e35c4d86404fa75f470 /src/debugwindow.cpp
parentc82058b2b64334c10d7e547cb81ac64efe09f516 (diff)
downloadbasket-882bcd26b3d60be72ea2b35921969a9850c52db9.tar.gz
basket-882bcd26b3d60be72ea2b35921969a9850c52db9.zip
Rename a number of old tq methods that are no longer tq specific
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 e86ff99..631a300 100644
--- a/src/debugwindow.cpp
+++ b/src/debugwindow.cpp
@@ -18,8 +18,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
-#include <tqlayout.h>
-#include <tqtextbrowser.h>
+#include <layout.h>
+#include <textbrowser.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"));
- 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)