summaryrefslogtreecommitdiff
path: root/vcl/source/outdev/outdev.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2022-05-02 22:23:07 +0200
committerStephan Bergmann <sbergman@redhat.com>2022-05-03 07:15:11 +0200
commitc8053f5a5629c04defd813b061f0d59d6bf15f88 (patch)
tree8a0e4cbafac32f98cee8547fd4088f6fdcdad6a2 /vcl/source/outdev/outdev.cxx
parent0cc8da4c091ac5784c0b4c2c7850ca8dabffea04 (diff)
Just use Any ctor instead of makeAny in vcl
Change-Id: Ib9b588cd10154049a5493c1be16de72955ea6077 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133736 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl/source/outdev/outdev.cxx')
-rw-r--r--vcl/source/outdev/outdev.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/outdev/outdev.cxx b/vcl/source/outdev/outdev.cxx
index 0d9248d2fd77..e831cf746199 100644
--- a/vcl/source/outdev/outdev.cxx
+++ b/vcl/source/outdev/outdev.cxx
@@ -291,7 +291,7 @@ css::uno::Any OutputDevice::GetSystemGfxDataAny() const
css::uno::Sequence< sal_Int8 > aSeq( reinterpret_cast<sal_Int8 const *>(&aSysData),
aSysData.nSize );
- return css::uno::makeAny(aSeq);
+ return css::uno::Any(aSeq);
}
void OutputDevice::SetRefPoint()