summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-07-30 16:17:16 +0200
committerStephan Bergmann <sbergman@redhat.com>2020-07-30 17:34:13 +0200
commit64cf52d47968d512afd383ce9a7321a4bd72b2ca (patch)
tree8166d786fb3a7439aedae00f401a277b7e95535b /include
parent978f6bb752112cd5393c294aa751e9e567980399 (diff)
ASan/UBSan build still needs DateField RTTI
...after 0c311bfbf67441823f8b3916db963e2680e9eb43 "make some classes private": > [GAL] sounds > instdir/program/gengal.bin: symbol lookup error: instdir/program/libtklo.so: undefined symbol: _ZTI9DateField > make[1]: *** [solenv/gbuild/Gallery.mk:56: workdir/Gallery/sounds.done] Error 1 with > $ find workdir/CxxObject/toolkit/source -name \*.o -exec bash -c 'nm "$0" | grep -F _ZTI9DateField && echo "^ $0"' {} \; > U _ZTI9DateField > ^ workdir/CxxObject/toolkit/source/awt/vclxwindows.o > U _ZTI9DateField > ^ workdir/CxxObject/toolkit/source/awt/vclxtoolkit.o Change-Id: Ica4f1ce6dfd5de0a3ca6cdddd59f85831348b81e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99802 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/toolkit/field.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/toolkit/field.hxx b/include/vcl/toolkit/field.hxx
index 83bd3f91ed2c..705e734c20d9 100644
--- a/include/vcl/toolkit/field.hxx
+++ b/include/vcl/toolkit/field.hxx
@@ -468,7 +468,7 @@ public:
bool IsEnforceValidValue( ) const { return mbEnforceValidValue; }
};
-class DateField : public SpinField, public DateFormatter
+class SAL_DLLPUBLIC_RTTI DateField : public SpinField, public DateFormatter
{
private:
Date maFirst;