summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2018-10-09 21:25:28 +0300
committerTor Lillqvist <tml@collabora.com>2018-10-09 21:25:43 +0300
commit496f3a23db14e042b8e77e7e46a6e0d3e9605b3d (patch)
tree93ea1ca1fab74815bae853ef9be2d8f67e0f46cb /sw
parente59ea346d31d416e61b963648e78c5c7f13d8551 (diff)
We want the function pointer here, not call it (yet)
Change-Id: I20c7c1e82b12a2d20baa673e8b7aeb3d0e1fa58c
Diffstat (limited to 'sw')
-rw-r--r--sw/source/uibase/dialog/swabstdlg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/dialog/swabstdlg.cxx b/sw/source/uibase/dialog/swabstdlg.cxx
index b4a9277b1921..78e8272c897d 100644
--- a/sw/source/uibase/dialog/swabstdlg.cxx
+++ b/sw/source/uibase/dialog/swabstdlg.cxx
@@ -47,7 +47,7 @@ SwAbstractDialogFactory* SwAbstractDialogFactory::Create()
fp = reinterpret_cast<SwAbstractDialogFactory* (SAL_CALL*)()>(
aDialogLibrary.getFunctionSymbol( "SwCreateDialogFactory" ));
#else
- fp = SwCreateDialogFactory();
+ fp = SwCreateDialogFactory;
#endif
#endif
if ( fp )