summaryrefslogtreecommitdiffstats
path: root/kbarcode/zplutils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbarcode/zplutils.cpp')
-rw-r--r--kbarcode/zplutils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kbarcode/zplutils.cpp b/kbarcode/zplutils.cpp
index 239959a..c9fe674 100644
--- a/kbarcode/zplutils.cpp
+++ b/kbarcode/zplutils.cpp
@@ -123,7 +123,7 @@ TQString ZPLUtils::fieldOrigin( int x, int y )
{
TQString zpl = TQString();
- zpl = TQString("^FO%1,%2\n").tqarg( x ).tqarg( y ); // field origin
+ zpl = TQString("^FO%1,%2\n").arg( x ).arg( 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;").tqarg( x ).tqarg( y ); // field origin
+ return TQString("o%1,%2;f0;").arg( x ).arg( y ); // field origin
}
TQString IPLUtils::footer()