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 15:55:56 +0200
commit287e8aa212212e33445bb63e9a89822cb75ddc61 (patch)
tree58bae9c661357594db40cfcfc2bc5f9d754d433f /sd/source
parentac9ff2df4b02a24394935e27b184009edca9d6c5 (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 d5bed9b764fc..57dd6e3c53e4 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 )