summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2018-11-05 11:31:00 +0200
committerTor Lillqvist <tml@collabora.com>2018-11-05 18:20:28 +0100
commitc35ed64c259085b8c13459eab91f89bccb1753a4 (patch)
tree446ca072d0458ecddd20df028b24269442c34329 /sc
parent1100b05c15591d2c47e092835c354b6edd5a9598 (diff)
We want the function pointer here, but not call it yet
We will call it just a few lines later. Change-Id: Id979fb7fdaebd05f2432d8917b921d1b1779d8a7 (cherry picked from commit e5ccf0c141c8d75323623803a3ef21c48c8cd423) Reviewed-on: https://gerrit.libreoffice.org/62915 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/attrdlg/scabstdlg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/attrdlg/scabstdlg.cxx b/sc/source/ui/attrdlg/scabstdlg.cxx
index f0582fa7d724..a75cbfb39de9 100644
--- a/sc/source/ui/attrdlg/scabstdlg.cxx
+++ b/sc/source/ui/attrdlg/scabstdlg.cxx
@@ -51,7 +51,7 @@ ScAbstractDialogFactory* ScAbstractDialogFactory::Create()
fp = reinterpret_cast<ScAbstractDialogFactory* (SAL_CALL*)()>(
aDialogLibrary.getFunctionSymbol( "ScCreateDialogFactory" ));
#else
- fp = ScCreateDialogFactory();
+ fp = ScCreateDialogFactory;
#endif
#endif
if ( fp )