[Libreoffice-commits] core.git: sfx2/source
Stephan Bergmann (via logerrit)
logerrit at kemper.freedesktop.org
Wed Aug 28 06:42:30 UTC 2019
sfx2/source/appl/app.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 642581c4cc1ff95795885fe331f1c052d33bdf59
Author: Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Tue Aug 27 21:29:10 2019 +0200
Commit: Stephan Bergmann <sbergman at redhat.com>
CommitDate: Wed Aug 28 08:40:53 2019 +0200
Fix other signature of basicide_macro_organizer
...after 97710225f015c8716c80e55ecdb78832f2edc731 "sfx2: fix DISABLE_DYNLOADING
build" had changed it to 'void const *' but the concurrently submitted
036e635678aedc414e2d55217e4f7f8359ed1b9a "Fix signature of
basicide_macro_organizer" fixed the underlying issue that had been introduced
with df905f41a33d0d7d2cde7fad80c5b3dc3c837c10 "loplugin:constmethod in sfx2" and
had caused DISABLE_DYNLOADING builds to fail
Change-Id: If5d8c3289d7c77f5e6526bf7f4e0c48292dc5f71
Reviewed-on: https://gerrit.libreoffice.org/78209
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
diff --git a/sfx2/source/appl/app.cxx b/sfx2/source/appl/app.cxx
index 1bbb425c58b7..e919d86c28a9 100644
--- a/sfx2/source/appl/app.cxx
+++ b/sfx2/source/appl/app.cxx
@@ -421,7 +421,7 @@ extern "C" { static void thisModule() {} }
#else
extern "C" long basicide_handle_basic_error(void const*);
-extern "C" void basicide_macro_organizer(void const*, sal_Int16);
+extern "C" void basicide_macro_organizer(void*, sal_Int16);
#endif
More information about the Libreoffice-commits
mailing list