diff options
-rw-r--r-- | include/vcl/pdfwriter.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vcl/pdfwriter.hxx b/include/vcl/pdfwriter.hxx index 0c2cbb6294dd..cb008fcec280 100644 --- a/include/vcl/pdfwriter.hxx +++ b/include/vcl/pdfwriter.hxx @@ -220,7 +220,7 @@ public: Error_Signature_Failed, }; - struct UNLESS_MERGELIBS(VCL_DLLPUBLIC) AnyWidget + struct VCL_DLLPUBLIC AnyWidget { WidgetType Type; // primitive RTTI public: @@ -291,7 +291,7 @@ public: ,TabOrder( rSource.TabOrder ) { } - AnyWidget& operator=( const AnyWidget& ); // never implemented + AnyWidget& operator=( const AnyWidget& ) = delete; // never implemented }; struct PushButtonWidget final : public AnyWidget @@ -378,7 +378,7 @@ public: // in the group }; - struct EditWidget final : public AnyWidget + struct VCL_DLLPUBLIC EditWidget final : public AnyWidget { bool MultiLine; // whether multiple lines are allowed bool Password; // visible echo off |