summaryrefslogtreecommitdiffstats
path: root/kbarcode/zplutils.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/zplutils.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/zplutils.cpp')
-rw-r--r--kbarcode/zplutils.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kbarcode/zplutils.cpp b/kbarcode/zplutils.cpp
index e989a89..239959a 100644
--- a/kbarcode/zplutils.cpp
+++ b/kbarcode/zplutils.cpp
@@ -24,7 +24,7 @@
#include <tqpaintdevicemetrics.h>
#include <tqregexp.h>
#include <tqstring.h>
-#include <textstream.h>
+#include <tqtextstream.h>
// font table for IPL, thanks to Erich Kitzmueller
struct { int size; int c; int h; int w; } iplfonttable[] = {
@@ -123,7 +123,7 @@ TQString ZPLUtils::fieldOrigin( int x, int y )
{
TQString zpl = TQString();
- zpl = TQString("^FO%1,%2\n").arg( x ).arg( y ); // field origin
+ zpl = TQString("^FO%1,%2\n").tqarg( x ).tqarg( y ); // field origin
return zpl;
}
@@ -243,7 +243,7 @@ TQString IPLUtils::field( const TQString & data )
TQString IPLUtils::fieldOrigin( int x, int y )
{
- return TQString("o%1,%2;f0;").arg( x ).arg( y ); // field origin
+ return TQString("o%1,%2;f0;").tqarg( x ).tqarg( y ); // field origin
}
TQString IPLUtils::footer()