sfx2/source/appl/app.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 642581c4cc1ff95795885fe331f1c052d33bdf59 Author: Stephan Bergmann <[email protected]> AuthorDate: Tue Aug 27 21:29:10 2019 +0200 Commit: Stephan Bergmann <[email protected]> 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 <[email protected]> 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 _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
