summaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-01-21 12:15:26 +0200
committerNoel Grandin <noel@peralex.com>2015-01-26 08:42:29 +0200
commitf61dbc302975aaa253b00ea6b141bb12474b3c95 (patch)
tree7150ea10f0111c4e6677030ac568c7be03424e08 /filter
parentnew loplugin: change virtual methods to non-virtual (diff)
downloadcore-f61dbc302975aaa253b00ea6b141bb12474b3c95.tar.gz
core-f61dbc302975aaa253b00ea6b141bb12474b3c95.zip
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
Diffstat (limited to 'filter')
-rw-r--r--filter/source/graphicfilter/icgm/outact.hxx14
1 files changed, 7 insertions, 7 deletions
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() {};