diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2022-09-13 10:34:55 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2022-09-13 15:21:30 +0200 |
commit | 01668b41c4140043f8a4fee18d01c0c4d85a5728 (patch) | |
tree | 1532a3a506b651ce58f192adf83c26a9fd8da06c | |
parent | 769cefd9c49652f28ba58cd371bc60b9e1bd5bd0 (diff) |
vcl: fix mergelibs build
Seen the breakage at e.g.
<https://tinderbox.libreoffice.org/cgi-bin/gunzip.cgi?tree=MASTER&brief-log=1663031911.19370>.
Change-Id: I96feb4e8922dd04cc24b5bd40b71d9cf99949a18
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139829
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
-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 |