diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-08-27 17:45:06 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-08-27 21:25:40 +0200 |
commit | 036e635678aedc414e2d55217e4f7f8359ed1b9a (patch) | |
tree | 5322a6f7c6b0506aa50cbd99f95e9bd4ac919eea /sfx2 | |
parent | 61c97e941b1d73bf94293f05fdd26636b55a4bce (diff) |
Fix signature of basicide_macro_organizer
see the function definition in basctl/source/basicide/basobj2.cxx
Change-Id: If19f0a82d5498795ceef26342e0152fb12ef983d
Reviewed-on: https://gerrit.libreoffice.org/78204
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/app.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/appl/app.cxx b/sfx2/source/appl/app.cxx index 3b6a8af8ef23..1bbb425c58b7 100644 --- a/sfx2/source/appl/app.cxx +++ b/sfx2/source/appl/app.cxx @@ -414,7 +414,7 @@ void SfxApplication::Invalidate( sal_uInt16 nId ) #ifndef DISABLE_DYNLOADING typedef long (*basicide_handle_basic_error)(void const *); -typedef void (*basicide_macro_organizer)(void const *, sal_Int16); +typedef void (*basicide_macro_organizer)(void *, sal_Int16); extern "C" { static void thisModule() {} } @@ -520,7 +520,7 @@ SfxApplication::ChooseScript(weld::Window *pParent) return aScriptURL; } -void SfxApplication::MacroOrganizer(const weld::Window* pParent, sal_Int16 nTabId) +void SfxApplication::MacroOrganizer(weld::Window* pParent, sal_Int16 nTabId) { #if !HAVE_FEATURE_SCRIPTING (void) pParent; |