summaryrefslogtreecommitdiffstats
path: root/kimgio/tiffr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kimgio/tiffr.cpp')
-rw-r--r--kimgio/tiffr.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kimgio/tiffr.cpp b/kimgio/tiffr.cpp
index 96b259b39..3a95f7949 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->at();
+ off += dev->tqat();
else if ( whence == SEEK_END )
off += dev->size();
- if ( !dev->at( off ) )
+ if ( !dev->tqat( off ) )
return ( toff_t )-1;
- return dev->at();
+ return dev->tqat();
}
static toff_t tiff_size( thandle_t handle )