[Libreoffice-commits] core.git: 2 commits - extensions/source vcl/source
Stephan Bergmann (via logerrit)
logerrit at kemper.freedesktop.org
Tue Oct 1 17:32:40 UTC 2019
extensions/source/ole/unoobjw.cxx | 5 +++--
vcl/source/app/salplug.cxx | 1 +
2 files changed, 4 insertions(+), 2 deletions(-)
New commits:
commit 75d924db95559cff5f699bad8fe34bb0aeac0ff6
Author: Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Tue Oct 1 10:47:27 2019 +0200
Commit: Stephan Bergmann <sbergman at redhat.com>
CommitDate: Tue Oct 1 19:30:42 2019 +0200
loplugin:external (clang-cl, HasAtHook), again
...after d00ee2cb0dce84173c035cf89f332c150dd02d00 "tdf#42949 Fix IWYU warnings
in vcl/source/[a-e]*"
Change-Id: I5a118cab222d32f5891f9e6ede44e1cded5985b0
Reviewed-on: https://gerrit.libreoffice.org/79942
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
diff --git a/vcl/source/app/salplug.cxx b/vcl/source/app/salplug.cxx
index cf5f42d7c9ae..a9196acdaf7a 100644
--- a/vcl/source/app/salplug.cxx
+++ b/vcl/source/app/salplug.cxx
@@ -23,6 +23,7 @@
#include <rtl/process.h>
#include <sal/log.hxx>
+#include <salframe.hxx>
#include <salinst.hxx>
#include <config_vclplug.h>
#include <desktop/crashreport.hxx>
commit 82588fdf5fefbe061fb96c0419294fd8e60088bf
Author: Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Tue Oct 1 10:45:45 2019 +0200
Commit: Stephan Bergmann <sbergman at redhat.com>
CommitDate: Tue Oct 1 19:30:13 2019 +0200
loplugin:refcounting (clang-cl)
Change-Id: Ifae4a5617e6fcad58319ee3854b20224c4099e1b
Reviewed-on: https://gerrit.libreoffice.org/79941
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
diff --git a/extensions/source/ole/unoobjw.cxx b/extensions/source/ole/unoobjw.cxx
index d8f46a09f1a8..485f31959969 100644
--- a/extensions/source/ole/unoobjw.cxx
+++ b/extensions/source/ole/unoobjw.cxx
@@ -55,6 +55,7 @@
#include <osl/diagnose.h>
#include <salhelper/simplereferenceobject.hxx>
+#include <rtl/ref.hxx>
#include <rtl/ustring.hxx>
#include <tools/diagnose_ex.h>
#include <sal/log.hxx>
@@ -137,10 +138,10 @@ private:
}
public:
- static Reference< TerminationVetoer > get()
+ static rtl::Reference< TerminationVetoer > get()
{
static TerminationVetoer* pInstance = new TerminationVetoer;
- static Reference< TerminationVetoer > aInstance( pInstance );
+ static rtl::Reference< TerminationVetoer > aInstance( pInstance );
return aInstance;
}
More information about the Libreoffice-commits
mailing list