[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - sd/source
Tor Lillqvist (via logerrit)
logerrit at kemper.freedesktop.org
Fri Sep 20 09:23:10 UTC 2019
sd/source/ui/dlg/sdabstdlg.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit f3601d420f90c1f7af0c701d796d2e2988933d4c
Author: Tor Lillqvist <tml at collabora.com>
AuthorDate: Mon Feb 25 15:33:01 2019 +0200
Commit: Tor Lillqvist <tml at collabora.com>
CommitDate: Fri Sep 20 11:21:49 2019 +0200
We want the function pointer here, but not call it yet
We will call it just a few lines later.
Change-Id: I967ff4eec2cfb1dcc7e8b02f32232be65b6366db
(cherry picked from commit 895573518e84e319655877baadda1adc54003435)
Reviewed-on: https://gerrit.libreoffice.org/79169
Reviewed-by: Tor Lillqvist <tml at collabora.com>
Tested-by: Tor Lillqvist <tml at collabora.com>
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 )
More information about the Libreoffice-commits
mailing list