summaryrefslogtreecommitdiffstats
path: root/krename/pictureplugin.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:32:32 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:32:32 -0600
commit8e0ad9b24c415aeed5e82093211b95879512692a (patch)
tree06c49b11cb92ab944146ca73fd145717b5533aca /krename/pictureplugin.cpp
parent4375f6cb209fb4a95d47fe04e6bf4b12584387e4 (diff)
downloadkrename-8e0ad9b24c415aeed5e82093211b95879512692a.tar.gz
krename-8e0ad9b24c415aeed5e82093211b95879512692a.zip
Rename a number of old tq methods that are no longer tq specific
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() );