diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-03-27 13:29:01 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-03-27 13:31:16 +0200 |
commit | 1c48417cf7f726e86bbb84a5403b56d925ce5610 (patch) | |
tree | acbc0dba190476b313768c69519528a98b219cdc /sc | |
parent | 0ac88c0bbc95465a08d14be0033a136a14c56557 (diff) |
Bypass FuncData::getParamDesc() too in the DISABLE_DYNLOADING case
Change-Id: Ia115355af6e556fb848235691be68edd2462752d
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/tool/callform.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sc/source/core/tool/callform.cxx b/sc/source/core/tool/callform.cxx index 7117c711c551..d46409bac3a7 100644 --- a/sc/source/core/tool/callform.cxx +++ b/sc/source/core/tool/callform.cxx @@ -391,6 +391,12 @@ const OUString& FuncData::GetModuleName() const bool FuncData::getParamDesc( OUString& aName, OUString& aDesc, sal_uInt16 nParam ) const { +#ifdef DISABLE_DYNLOADING + (void) aName; + (void) aDesc; + (void) nParam; + return false; +#else bool bRet = false; if ( nParam <= nParamCount ) { @@ -414,6 +420,7 @@ bool FuncData::getParamDesc( OUString& aName, OUString& aDesc, sal_uInt16 nParam aDesc = OUString(); } return bRet; +#endif } FuncCollection::FuncCollection() {} |