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 26c9eee9554b..6c574242c869 100644 --- a/vcl/source/gdi/metaact.cxx +++ b/vcl/source/gdi/metaact.cxx @@ -3117,7 +3117,15 @@ void MetaEPSAction::Read( SvStream& rIStm, ImplMetaReadData* ) ReadGDIMetaFile( rIStm, maSubst ); } -IMPL_META_ACTION( RefPoint, META_REFPOINT_ACTION ) +MetaRefPointAction::MetaRefPointAction() : + MetaAction ( META_REFPOINT_ACTION ), + mbSet ( false ) +{ +} + +MetaRefPointAction::~MetaRefPointAction() +{ +} MetaRefPointAction::MetaRefPointAction( const Point& rRefPoint, bool bSet ) : MetaAction ( META_REFPOINT_ACTION ), |