summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sq_viewcache.ui.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:12 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:12 -0600
commit3b68f156c6c97fcccaa4ed31b5e901e2fad95a81 (patch)
tree1db844201ed3d2d715ca008743a9e8ea0235aa16 /ksquirrel/sq_viewcache.ui.h
parentbc35492ff852bb290006909536af53391753513f (diff)
downloadksquirrel-3b68f156c6c97fcccaa4ed31b5e901e2fad95a81.tar.gz
ksquirrel-3b68f156c6c97fcccaa4ed31b5e901e2fad95a81.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit bc35492ff852bb290006909536af53391753513f.
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 7e2ece9..5066e05 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>").arg((int)SQ_PixmapCache::instance()->count()));
+ textTotal->setText(TQString("<b>%1</b>").tqarg((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").arg(th.w).arg(th.h));
+ TQString(), TQString::tqfromLatin1("%1x%2").tqarg(th.w).tqarg(th.h));
else
item = new TQListViewItem(listCache, s,
- TQString(), TQString::fromLatin1("%1x%2").arg(th.w).arg(th.h));
+ TQString(), TQString::tqfromLatin1("%1x%2").tqarg(th.w).tqarg(th.h));
item->setPixmap(1, it.data().mime);