From kde-commits Tue Apr 12 20:27:45 2005 From: Enrico Ros Date: Tue, 12 Apr 2005 20:27:45 +0000 To: kde-commits Subject: kpdf_annotations: kdegraphics/kpdf/core (silent) Message-Id: <20050412202745.3D498633 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=111333768000635 CVS commit by eros: CVS_SILENT Page: disabled debug save timing, Annots: typos M +1 -1 annotations.h 1.2.2.15 M +2 -2 page.cpp 1.20.2.10 --- kdegraphics/kpdf/core/annotations.h #1.2.2.14:1.2.2.15 @@ -209,5 +209,5 @@ struct HighlightAnnotation : public Anno // local enums - enum HighlightType { Highlight, Underline, Squiggly, StrikeOut }; + enum HighlightType { Highlight, Squiggly, Underline, StrikeOut }; // data fields --- kdegraphics/kpdf/core/page.cpp #1.20.2.9:1.20.2.10 @@ -402,5 +402,5 @@ void KPDFPage::saveLocalContents( QDomNo if ( !m_annotations.isEmpty() ) { -#if 1 +#if 0 struct timeval ts, te; gettimeofday( &ts, NULL ); @@ -428,5 +428,5 @@ void KPDFPage::saveLocalContents( QDomNo if ( annotListElement.hasChildNodes() ) pageElement.appendChild( annotListElement ); -#if 1 +#if 0 gettimeofday( &te, NULL ); double startTime = (double)ts.tv_sec + ((double)ts.tv_usec) / 1000000.0;