From f61dbc302975aaa253b00ea6b141bb12474b3c95 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 21 Jan 2015 12:15:26 +0200 Subject: followup code removal after changing virtual methods to non-virtual This cleanups up indentation and removes dead classes. This is a followup patch to commit 272b1dd55797aacf511fb4342b0054e3697243f6 "new loplugin: change virtual methods to non-virtual" Change-Id: I1c2139589cf8cb23bb9808defe22c51039d38de1 --- filter/source/graphicfilter/icgm/outact.hxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'filter/source') diff --git a/filter/source/graphicfilter/icgm/outact.hxx b/filter/source/graphicfilter/icgm/outact.hxx index 2a8dd5f48ec1..20b829802bdf 100644 --- a/filter/source/graphicfilter/icgm/outact.hxx +++ b/filter/source/graphicfilter/icgm/outact.hxx @@ -45,7 +45,7 @@ class CGM; class CGMBitmapDescriptor; class CGMOutAct { - protected: +protected: sal_uInt16 mnCurrentPage; // defaulted to zero sal_uInt32 mnGroupActCount; // grouping @@ -54,16 +54,16 @@ class CGMOutAct sal_uInt16 mnIndex; // figure sal_uInt8* mpFlags; - Point* mpPoints; - tools::PolyPolygon maPolyPolygon; - ::com::sun::star::awt::Gradient* mpGradient; + Point* mpPoints; + tools::PolyPolygon maPolyPolygon; + css::awt::Gradient* mpGradient; - CGM* mpCGM; + CGM* mpCGM; - public: +public: CGMOutAct( CGM& rCGM ); virtual ~CGMOutAct(); - void FirstOutPut() { mpCGM->mbFirstOutPut = false; } ; + void FirstOutPut() { mpCGM->mbFirstOutPut = false; } ; virtual void InsertPage() { mnCurrentPage++; } ; virtual void BeginGroup() {} ; virtual void EndGroup() {}; -- cgit