summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/app.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-11 08:42:15 +0200
committerNoel Grandin <noel@peralex.com>2015-08-11 09:48:17 +0200
commite5da350e4dd9b175c2f50cb392b23a805dac9a27 (patch)
tree1abf5f6a2342a09895ade05a92a3550897c14e38 /sfx2/source/appl/app.cxx
parentc85cda1eb461d1b27b49ad746e2b2299908b9e75 (diff)
loplugin: defaultparams
Change-Id: Ibff26c023655d36f0fa71ead399a6116c2988607
Diffstat (limited to 'sfx2/source/appl/app.cxx')
-rw-r--r--sfx2/source/appl/app.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/appl/app.cxx b/sfx2/source/appl/app.cxx
index a22f36d8c6b2..98958e9faab0 100644
--- a/sfx2/source/appl/app.cxx
+++ b/sfx2/source/appl/app.cxx
@@ -490,7 +490,7 @@ IMPL_LINK_TYPED( SfxApplication, GlobalBasicErrorHdl_Impl, StarBASIC*, pStarBasi
#ifndef DISABLE_DYNLOADING
// load basctl module
osl::Module aMod;
- aMod.loadRelative(&thisModule, SVLIBRARY("basctl"), 0);
+ aMod.loadRelative(&thisModule, SVLIBRARY("basctl"));
// get symbol
basicide_handle_basic_error pSymbol = reinterpret_cast<basicide_handle_basic_error>(aMod.getFunctionSymbol("basicide_handle_basic_error"));
@@ -588,7 +588,7 @@ void SfxApplication::MacroOrganizer( sal_Int16 nTabId )
#ifndef DISABLE_DYNLOADING
// load basctl module
osl::Module aMod;
- aMod.loadRelative(&thisModule, SVLIBRARY("basctl"), 0);
+ aMod.loadRelative(&thisModule, SVLIBRARY("basctl"));
// get symbol
basicide_macro_organizer pSymbol = reinterpret_cast<basicide_macro_organizer>(aMod.getFunctionSymbol("basicide_macro_organizer"));