summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2018-10-09 21:25:28 +0300
committerMichael Meeks <michael.meeks@collabora.com>2018-10-30 17:00:48 +0000
commit4ed5ebfe973660adeac37c91233636951dc65ae8 (patch)
treee3719b3c2f6bdc04c3b0f0930278396f2b753012 /sw
parentdbff19b65a852b3ed73c2dff9d790d23abe2c621 (diff)
We want the function pointer here, not call it (yet)
Change-Id: I20c7c1e82b12a2d20baa673e8b7aeb3d0e1fa58c (cherry picked from commit 496f3a23db14e042b8e77e7e46a6e0d3e9605b3d) Signed-off-by: Michael Meeks <michael.meeks@collabora.com>
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 6343d27cf54e..4546834b1c26 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 )