diff options
Diffstat (limited to 'kooka/kookaimage.cpp')
-rw-r--r-- | kooka/kookaimage.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kooka/kookaimage.cpp b/kooka/kookaimage.cpp index 4bf7976c..ab491429 100644 --- a/kooka/kookaimage.cpp +++ b/kooka/kookaimage.cpp @@ -205,15 +205,15 @@ void KookaImage::extractNow() { kdDebug(28000) << "extracting a subimage number " << m_subNo << endl; - KookaImage *tqparent = parentImage(); + KookaImage *parent = parentImage(); - if( tqparent ) + if( parent ) { - loadTiffDir( tqparent->localFileName(), m_subNo ); + loadTiffDir( parent->localFileName(), m_subNo ); } else { - kdDebug(28000) << "ERR: No tqparent defined - can not laod subimage" << endl; + kdDebug(28000) << "ERR: No parent defined - can not laod subimage" << endl; } } |