From e0cefc0804a4b7898b7083c2a92e6ce91c44505b Mon Sep 17 00:00:00 2001 From: Hib Eris Date: Sat, 3 Jul 2010 11:06:19 +0200 Subject: [PATCH 2/4] [qt4] Prevent warnings on not handled enumeration values --- qt4/src/poppler-annotation.cc | 5 +++++ qt4/src/poppler-page.cc | 14 ++++++++++++++ 2 files changed, 19 insertions(+), 0 deletions(-) diff --git a/qt4/src/poppler-annotation.cc b/qt4/src/poppler-annotation.cc index 88a3f99..410f204 100644 --- a/qt4/src/poppler-annotation.cc +++ b/qt4/src/poppler-annotation.cc @@ -1621,6 +1621,11 @@ void LinkAnnotation::store( QDomNode & node, QDomDocument & document ) const // FIXME: implement me break; } + case Poppler::Link::JavaScript: + { + // FIXME: implement me + break; + } case Poppler::Link::None: break; } diff --git a/qt4/src/poppler-page.cc b/qt4/src/poppler-page.cc index ae67b11..9ea2e98 100644 --- a/qt4/src/poppler-page.cc +++ b/qt4/src/poppler-page.cc @@ -177,6 +177,20 @@ Link* PageData::convertLinkActionToLink(::LinkAction * a, DocumentData *parentDo copyString( m_uri, m->getTitle()->getCString() ); */ break; + case actionRendition: + { + /* FIXME: implement me */ + qDebug() << "actionRendition not implemented"; + } + break; + + case actionOCGState: + { + /* FIXME: implement me */ + qDebug() << "actionOCGState not implemented"; + } + break; + case actionUnknown: break; } -- 1.6.4.2