summaryrefslogtreecommitdiffstats
path: root/kuickshow/src/imlibwidget.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:32:17 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:32:17 -0600
commitc509088a31cffd8e6d25c00a00414025426fc737 (patch)
tree06242637d2244aa79ad8812f39e64005ffc5ea91 /kuickshow/src/imlibwidget.cpp
parent913e257dbbebe29c4f356ebb9fc6e888d0d1ac75 (diff)
downloadtdegraphics-c509088a31cffd8e6d25c00a00414025426fc737.tar.gz
tdegraphics-c509088a31cffd8e6d25c00a00414025426fc737.zip
Rename additional global TQt functions
Diffstat (limited to 'kuickshow/src/imlibwidget.cpp')
-rw-r--r--kuickshow/src/imlibwidget.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kuickshow/src/imlibwidget.cpp b/kuickshow/src/imlibwidget.cpp
index 0bca3271..36420918 100644
--- a/kuickshow/src/imlibwidget.cpp
+++ b/kuickshow/src/imlibwidget.cpp
@@ -109,7 +109,7 @@ void ImlibWidget::init()
m_kuickFile = 0L;
if ( !id )
- qFatal("ImlibWidget: Imlib not initialized, aborting.");
+ tqFatal("ImlibWidget: Imlib not initialized, aborting.");
setAutoRender( true );
@@ -198,7 +198,7 @@ bool ImlibWidget::loadImage( KuickFile * file )
bool ImlibWidget::cacheImage( const KURL& url )
{
-// qDebug("cache image: %s", url.url().latin1());
+// tqDebug("cache image: %s", url.url().latin1());
KuickFile *file = FileCache::self()->getFile( url );
if ( file->isAvailable() )
return cacheImage( file );
@@ -213,7 +213,7 @@ bool ImlibWidget::cacheImage( const KURL& url )
bool ImlibWidget::cacheImage( KuickFile * file )
{
-// qDebug("cache image: %s", file->url().url().latin1());
+// tqDebug("cache image: %s", file->url().url().latin1());
KuickImage *kuim = loadImageInternal( file );
if ( kuim ) {
kuim->renderPixmap();
@@ -632,7 +632,7 @@ KuickImage * ImageCache::getKuimage( KuickFile * file,
// #ifndef NDEBUG
// gettimeofday( &tms2, NULL );
-// qDebug("*** LOADING image: %s, took %ld ms", file.latin1(),
+// tqDebug("*** LOADING image: %s, took %ld ms", file.latin1(),
// (tms2.tv_usec - tms1.tv_usec)/1000);
// #endif
@@ -655,7 +655,7 @@ KuickImage * ImageCache::getKuimage( KuickFile * file,
}
if ( kuickList.count() > (uint) myMaxImages ) {
-// qDebug(":::: now removing from cache: %s", (*fileList.fromLast()).latin1());
+// tqDebug(":::: now removing from cache: %s", (*fileList.fromLast()).latin1());
kuickList.removeLast();
fileList.remove( fileList.fromLast() );
}