summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sq_viewcache.ui.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:32:41 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:32:41 -0600
commitbc35492ff852bb290006909536af53391753513f (patch)
tree58bf98002414003835d9b379d8c9dd8487327797 /ksquirrel/sq_viewcache.ui.h
parent4a87ec7cc055b8e9269a71841a3c27a64a95246b (diff)
downloadksquirrel-bc35492ff852bb290006909536af53391753513f.tar.gz
ksquirrel-bc35492ff852bb290006909536af53391753513f.zip
Rename a number of old tq methods that are no longer tq specific
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 5066e05..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::tqfromLatin1("%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::tqfromLatin1("%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);