summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sq_viewcache.ui.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:30 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:30 -0600
commitc1e4925208f428f2ad5a86d1a1eee47e3c43068a (patch)
tree698b7dfc0db6bd962c0c699fdbc43e7435526123 /ksquirrel/sq_viewcache.ui.h
parentf5a0e45e0510e355733e6390eb26efd704c990c4 (diff)
downloadksquirrel-c1e4925208f428f2ad5a86d1a1eee47e3c43068a.tar.gz
ksquirrel-c1e4925208f428f2ad5a86d1a1eee47e3c43068a.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'ksquirrel/sq_viewcache.ui.h')
-rw-r--r--ksquirrel/sq_viewcache.ui.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ksquirrel/sq_viewcache.ui.h b/ksquirrel/sq_viewcache.ui.h
index 6b8b98a..7e2ece9 100644
--- a/ksquirrel/sq_viewcache.ui.h
+++ b/ksquirrel/sq_viewcache.ui.h
@@ -9,7 +9,7 @@
void SQ_ViewCache::init()
{
- textTotal->setText(TQString("<b>%1</b>").tqarg((int)SQ_PixmapCache::instance()->count()));
+ textTotal->setText(TQString("<b>%1</b>").arg((int)SQ_PixmapCache::instance()->count()));
if(SQ_PixmapCache::instance()->isEmpty())
return;
@@ -31,10 +31,10 @@ void SQ_ViewCache::init()
if(itemafter)
item = new TQListViewItem(listCache, itemafter, s,
- TQString(), TQString::fromLatin1("%1x%2").tqarg(th.w).tqarg(th.h));
+ TQString(), TQString::fromLatin1("%1x%2").arg(th.w).arg(th.h));
else
item = new TQListViewItem(listCache, s,
- TQString(), TQString::fromLatin1("%1x%2").tqarg(th.w).tqarg(th.h));
+ TQString(), TQString::fromLatin1("%1x%2").arg(th.w).arg(th.h));
item->setPixmap(1, it.data().mime);