diff options
Diffstat (limited to 'emfio')
-rw-r--r-- | emfio/inc/mtftools.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/emfio/inc/mtftools.hxx b/emfio/inc/mtftools.hxx index 2d31fe4ef4ad..cd2484606f07 100644 --- a/emfio/inc/mtftools.hxx +++ b/emfio/inc/mtftools.hxx @@ -315,7 +315,10 @@ namespace emfio struct EMFIO_DLLPUBLIC GDIObj { + GDIObj() = default; + GDIObj(GDIObj const &) = default; virtual ~GDIObj() = default; // Polymorphic base class + GDIObj & operator =(GDIObj const &) = default; }; struct UNLESS_MERGELIBS(EMFIO_DLLPUBLIC) WinMtfFontStyle final : GDIObj |