summaryrefslogtreecommitdiff
path: root/sc/source/ui/attrdlg
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 13:12:50 +0200
commite5ccf0c141c8d75323623803a3ef21c48c8cd423 (patch)
treee1066b94ec37f14f1c103d3ee37e5c8b5f2f67b7 /sc/source/ui/attrdlg
parent19e004ed1c26842e68661000ecb568e96ca76a64 (diff)
We want the function pointer here, but not call it yet
We will call it just a few lines later. Change-Id: Id979fb7fdaebd05f2432d8917b921d1b1779d8a7
Diffstat (limited to 'sc/source/ui/attrdlg')
-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 2829cbf5a833..76a9cde55131 100644
--- a/sc/source/ui/attrdlg/scabstdlg.cxx
+++ b/sc/source/ui/attrdlg/scabstdlg.cxx
@@ -52,7 +52,7 @@ ScAbstractDialogFactory* ScAbstractDialogFactory::Create()
fp = reinterpret_cast<ScAbstractDialogFactory* (SAL_CALL*)()>(
aDialogLibrary.getFunctionSymbol( "ScCreateDialogFactory" ));
#else
- fp = ScCreateDialogFactory();
+ fp = ScCreateDialogFactory;
#endif
#endif
if ( fp )