summaryrefslogtreecommitdiffstats
path: root/lib/libchmfile/libchmtocimage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libchmfile/libchmtocimage.cpp')
-rw-r--r--lib/libchmfile/libchmtocimage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libchmfile/libchmtocimage.cpp b/lib/libchmfile/libchmtocimage.cpp
index 89fe45e..abf5ab7 100644
--- a/lib/libchmfile/libchmtocimage.cpp
+++ b/lib/libchmfile/libchmtocimage.cpp
@@ -2099,14 +2099,14 @@ LCHMTocImageKeeper::LCHMTocImageKeeper( )
const png_memory_image_t * image = png_image_bookarray + i;
if ( !m_images[i].loadFromData ((const uchar*)image->data, image->size, "PNG") )
- qFatal ( "Could not load image %d", i );
+ tqFatal ( "Could not load image %d", i );
}
}
const TQPixmap * LCHMTocImageKeeper::getImage( int id )
{
if ( id < 0 || id > LCHMBookIcons::MAX_BUILTIN_ICONS )
- qFatal("LCHMTocImageKeeper::getImage: requested image id (%d) is out of range (%d)", id, LCHMBookIcons::MAX_BUILTIN_ICONS );
+ tqFatal("LCHMTocImageKeeper::getImage: requested image id (%d) is out of range (%d)", id, LCHMBookIcons::MAX_BUILTIN_ICONS );
return &m_images[id];
}