summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vcl/source/gdi/metaact.cxx10
1 files changed, 9 insertions, 1 deletions
diff --git a/vcl/source/gdi/metaact.cxx b/vcl/source/gdi/metaact.cxx
index a94be798d814..daf10adef627 100644
--- a/vcl/source/gdi/metaact.cxx
+++ b/vcl/source/gdi/metaact.cxx
@@ -2604,7 +2604,15 @@ void MetaTextFillColorAction::Read( SvStream& rIStm, ImplMetaReadData* )
rIStm.ReadCharAsBool( mbSet );
}
-IMPL_META_ACTION( TextLineColor, META_TEXTLINECOLOR_ACTION )
+MetaTextLineColorAction::MetaTextLineColorAction() :
+ MetaAction ( META_TEXTLINECOLOR_ACTION ),
+ mbSet ( false )
+{
+}
+
+MetaTextLineColorAction::~MetaTextLineColorAction()
+{
+}
MetaTextLineColorAction::MetaTextLineColorAction( const Color& rColor, bool bSet ) :
MetaAction ( META_TEXTLINECOLOR_ACTION ),