diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-03 21:52:01 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-03 21:52:01 -0500 |
commit | b8dc3f5795c618c3617302973fff7d7bbf0ead2d (patch) | |
tree | 682c2edd48e4c0e5d2ed38ae2c8f37a86a9a226e | |
parent | 62777d2782c7fa738eb047eff175785fc2cd24ff (diff) | |
download | kbarcode-b8dc3f5795c618c3617302973fff7d7bbf0ead2d.tar.gz kbarcode-b8dc3f5795c618c3617302973fff7d7bbf0ead2d.zip |
Fix remaining string format errors
-rw-r--r-- | kbarcode/pixmapbarcode.cpp | 2 | ||||
-rw-r--r-- | kbarcode/tbarcode2.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/kbarcode/pixmapbarcode.cpp b/kbarcode/pixmapbarcode.cpp index 02cb19b..4768b3e 100644 --- a/kbarcode/pixmapbarcode.cpp +++ b/kbarcode/pixmapbarcode.cpp @@ -178,7 +178,7 @@ bool PixmapBarcode::createPixmap( TQPixmap* target, int resx, int resy ) cmd += input->name(); cmd += " -sNOPAUSE -q - -c showpage quit"; - tqDebug("cmd: " + cmd ); + tqDebug("cmd: %s", cmd.ascii() ); gs_pipe = popen( cmd.latin1(), "w" ); if( !gs_pipe ) { diff --git a/kbarcode/tbarcode2.cpp b/kbarcode/tbarcode2.cpp index 8490f7c..95cc64f 100644 --- a/kbarcode/tbarcode2.cpp +++ b/kbarcode/tbarcode2.cpp @@ -122,7 +122,7 @@ bool TBarcode2::createPostscript( char** postscript, long* postscript_size ) tbarcode->height(), tbarcode->checksum() ); - tqDebug( "Cmd = " + cmd ); + tqDebug( "Cmd = %s", cmd.ascii() ); if( !readFromPipe( cmd.latin1(), postscript, postscript_size ) ) return false; |