summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-11-05 11:24:13 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-12-01 12:13:59 +0100
commite10e5c15cc51d3b2a5e4b699c5f381aa92a17c4e (patch)
treeddbe3e3146a365f7f2ba79ce73e18568a834d104 /vcl
parentfabce43fe1caf3a59a7d9dc1074a74b704f9fa24 (diff)
improve the script for reducing symbol exports
And apply some of the results Change-Id: If555476fdd951cbc1d01fb3ef3ab1cbca2b64960 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124896 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/bitmap/bitmappalette.cxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/vcl/source/bitmap/bitmappalette.cxx b/vcl/source/bitmap/bitmappalette.cxx
index e782e34ba1a8..61a8a8252794 100644
--- a/vcl/source/bitmap/bitmappalette.cxx
+++ b/vcl/source/bitmap/bitmappalette.cxx
@@ -101,15 +101,12 @@ BitmapPalette& BitmapPalette::operator=(BitmapPalette&& rOther) noexcept
return *this;
}
-SAL_DLLPRIVATE const BitmapColor* BitmapPalette::ImplGetColorBuffer() const
+const BitmapColor* BitmapPalette::ImplGetColorBuffer() const
{
return mpImpl->GetBitmapData().data();
}
-SAL_DLLPRIVATE BitmapColor* BitmapPalette::ImplGetColorBuffer()
-{
- return mpImpl->GetBitmapData().data();
-}
+BitmapColor* BitmapPalette::ImplGetColorBuffer() { return mpImpl->GetBitmapData().data(); }
BitmapChecksum BitmapPalette::GetChecksum() const
{