summaryrefslogtreecommitdiffstats
path: root/kbarcode/textlineedit.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:55:56 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:55:56 -0600
commitabb955bc2a696c0283c1efd82c4edf4d06f314a7 (patch)
tree90639442ba9f4e06fccc0f4f7b7aed315423e6f1 /kbarcode/textlineedit.cpp
parent64e14d1bc38e39001b5ec84a6e13198ef3c67315 (diff)
downloadkbarcode-abb955bc2a696c0283c1efd82c4edf4d06f314a7.tar.gz
kbarcode-abb955bc2a696c0283c1efd82c4edf4d06f314a7.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 64e14d1bc38e39001b5ec84a6e13198ef3c67315.
Diffstat (limited to 'kbarcode/textlineedit.cpp')
-rw-r--r--kbarcode/textlineedit.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kbarcode/textlineedit.cpp b/kbarcode/textlineedit.cpp
index d3528b4..79347f2 100644
--- a/kbarcode/textlineedit.cpp
+++ b/kbarcode/textlineedit.cpp
@@ -28,12 +28,12 @@
#include <tqdockarea.h>
#include <tqregexp.h>
#include <tqlabel.h>
-#include <layout.h>
+#include <tqlayout.h>
TextLineEditor::TextLineEditor( TokenProvider* token, TQWidget *parent, const char *name )
: TQWidget( parent, name ), m_token( token )
{
- TQVBoxLayout* layout = new TQVBoxLayout( this, 6, 6 );
+ TQVBoxLayout* tqlayout = new TQVBoxLayout( this, 6, 6 );
@@ -48,8 +48,8 @@ TextLineEditor::TextLineEditor( TokenProvider* token, TQWidget *parent, const ch
setupActions();
- layout->addWidget( area );
- layout->addWidget( editor );
+ tqlayout->addWidget( area );
+ tqlayout->addWidget( editor );