From e24f08a75f7f709d439f6da722ad7410b83e2639 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Fri, 9 Feb 2007 14:53:26 +0000 Subject: [PATCH] remove misplaced ';' svn path=/trunk/playground/graphics/okular/; revision=631926 --- core/annotations.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/annotations.cpp b/core/annotations.cpp index 82c2ccb2d..e940e6a84 100644 --- a/core/annotations.cpp +++ b/core/annotations.cpp @@ -556,7 +556,7 @@ Annotation::Annotation( const QDomNode & annNode ) revision.setAnnotation( AnnotationUtils::createAnnotation( revElement ) ); // if annotation is valid, add revision to internal list - if ( revision.annotation() ); + if ( revision.annotation() ) d->m_revisions.append( revision ); }