summaryrefslogtreecommitdiffstats
path: root/krename/pictureplugin.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:19 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-07-31 02:45:03 +0200
commit1d761f05a87f26778cfec736a6b911354af52a46 (patch)
tree8a3f8125ff30f35a189622a119f14eba26d4345a /krename/pictureplugin.cpp
parentc455f7784ecce32de2b715008036be6de62e3ba6 (diff)
downloadkrename-1d761f05a87f26778cfec736a6b911354af52a46.tar.gz
krename-1d761f05a87f26778cfec736a6b911354af52a46.zip
Remove additional unneeded tq method conversions
(cherry picked from commit 82f7d41a2e839cd846c2ea1d75fa1029b7503b0d)
Diffstat (limited to 'krename/pictureplugin.cpp')
-rw-r--r--krename/pictureplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/krename/pictureplugin.cpp b/krename/pictureplugin.cpp
index 58ce8cd..e619b49 100644
--- a/krename/pictureplugin.cpp
+++ b/krename/pictureplugin.cpp
@@ -72,7 +72,7 @@ TQString PicturePlugin::processFile( BatchRenamer* b, int i, TQString token, int
if( img.isNull() )
return TQString();
- resolution = TQString( "%1x%2" ).tqarg(img.width()).tqarg(img.height());
+ resolution = TQString( "%1x%2" ).arg(img.width()).arg(img.height());
xres = TQString::number( img.width() );
yres = TQString::number( img.height() );
bitdepth = TQString::number( img.depth() );