diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-06-04 16:59:56 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-06-04 17:00:24 +0200 |
commit | 588591d94803c8e3807000e9f9bdbaeaae69fecd (patch) | |
tree | 0a8236c688f7771691b7a66cd493d4ab10408ad9 /sfx2 | |
parent | 530ebc516b89af2b14c94eaa184c0fe7953e655a (diff) |
Match basicide_macro_organizer in basctl/source/basicide/basobj2.cxx
Change-Id: Ib185645e84f8792d3ed29e7d5e674e5e7cc39fc5
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 43fc768b20f1..9b2b88c633c4 100644 --- a/sfx2/source/appl/app.cxx +++ b/sfx2/source/appl/app.cxx @@ -468,14 +468,14 @@ void SfxApplication::Invalidate( sal_uInt16 nId ) #ifndef DISABLE_DYNLOADING typedef long (SAL_CALL *basicide_handle_basic_error)(void*); -typedef void* (SAL_CALL *basicide_macro_organizer)(sal_Int16); +typedef void (SAL_CALL *basicide_macro_organizer)(sal_Int16); extern "C" { static void SAL_CALL thisModule() {} } #else extern "C" long basicide_handle_basic_error(void*); -extern "C" void *basicide_macro_organizer(sal_Int16); +extern "C" void basicide_macro_organizer(sal_Int16); #endif |