summaryrefslogtreecommitdiffstats
path: root/kimgio/tiffr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kimgio/tiffr.cpp')
-rw-r--r--kimgio/tiffr.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kimgio/tiffr.cpp b/kimgio/tiffr.cpp
index 2dcf28b9d..bbffa82a9 100644
--- a/kimgio/tiffr.cpp
+++ b/kimgio/tiffr.cpp
@@ -30,14 +30,14 @@ static toff_t tiff_seek( thandle_t handle, toff_t off, int whence )
TQIODevice *dev = reinterpret_cast<TQIODevice *>( handle );
if ( whence == SEEK_CUR )
- off += dev->tqat();
+ off += dev->at();
else if ( whence == SEEK_END )
off += dev->size();
- if ( !dev->tqat( off ) )
+ if ( !dev->at( off ) )
return ( toff_t )-1;
- return dev->tqat();
+ return dev->at();
}
static toff_t tiff_size( thandle_t handle )
@@ -140,7 +140,7 @@ KDE_EXPORT void kimgio_tiff_read( TQImageIO *io )
TIFFClose( tiff );
io->setImage( image );
- io->seStatus ( 0 );
+ io->setStatus ( 0 );
}
KDE_EXPORT void kimgio_tiff_write( TQImageIO * )