diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/metaact.cxx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/vcl/source/gdi/metaact.cxx b/vcl/source/gdi/metaact.cxx index 33ed785a82d6..a94be798d814 100644 --- a/vcl/source/gdi/metaact.cxx +++ b/vcl/source/gdi/metaact.cxx @@ -2471,7 +2471,15 @@ void MetaLineColorAction::Read( SvStream& rIStm, ImplMetaReadData* ) rIStm.ReadCharAsBool( mbSet ); } -IMPL_META_ACTION( FillColor, META_FILLCOLOR_ACTION ) +MetaFillColorAction::MetaFillColorAction() : + MetaAction ( META_FILLCOLOR_ACTION ), + mbSet ( false ) +{ +} + +MetaFillColorAction::~MetaFillColorAction() +{ +} MetaFillColorAction::MetaFillColorAction( const Color& rColor, bool bSet ) : MetaAction ( META_FILLCOLOR_ACTION ), |