summaryrefslogtreecommitdiff
path: root/sd/source
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2019-02-25 15:33:01 +0200
committerTor Lillqvist <tml@collabora.com>2019-02-25 20:32:47 +0200
commit895573518e84e319655877baadda1adc54003435 (patch)
treef1c898d64e267a882392609f9d27157afe558950 /sd/source
parenta0323fef144292d88bace75b37183e2000360699 (diff)
We want the function pointer here, but not call it yet
We will call it just a few lines later. Change-Id: I967ff4eec2cfb1dcc7e8b02f32232be65b6366db
Diffstat (limited to 'sd/source')
-rw-r--r--sd/source/ui/dlg/sdabstdlg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/dlg/sdabstdlg.cxx b/sd/source/ui/dlg/sdabstdlg.cxx
index cf61289997db..22f85571f2f4 100644
--- a/sd/source/ui/dlg/sdabstdlg.cxx
+++ b/sd/source/ui/dlg/sdabstdlg.cxx
@@ -47,7 +47,7 @@ SdAbstractDialogFactory* SdAbstractDialogFactory::Create()
fp = reinterpret_cast<SdAbstractDialogFactory* (SAL_CALL*)()>(
aDialogLibrary.getFunctionSymbol( "SdCreateDialogFactory" ));
#else
- fp = SdCreateDialogFactory();
+ fp = SdCreateDialogFactory;
#endif
#endif
if ( fp )