use a feature from v18 only if we have it

svn path=/trunk/playground/graphics/okular/; revision=625656
remotes/origin/KDE/4.0
Pino Toscano 19 years ago
parent f0a80b14fc
commit d0744fa204
  1. 4
      generators/djvu/kdjvu.cpp

@ -483,7 +483,11 @@ bool KDjVu::openFile( const QString & fileName )
p->m_width = info.width;
p->m_height = info.height;
p->m_dpi = info.dpi;
#if DDJVUAPI_VERSION >= 18
p->m_orientation = flipRotation( info.rotation );
#else
p->m_orientation = 0;
#endif
d->m_pages[i] = p;
}

Loading…
Cancel
Save