[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - sc/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Mon Nov 5 17:21:14 UTC 2018


 sc/source/ui/attrdlg/scabstdlg.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c35ed64c259085b8c13459eab91f89bccb1753a4
Author:     Tor Lillqvist <tml at collabora.com>
AuthorDate: Mon Nov 5 11:31:00 2018 +0200
Commit:     Tor Lillqvist <tml at collabora.com>
CommitDate: Mon Nov 5 18:20:28 2018 +0100

    We want the function pointer here, but not call it yet
    
    We will call it just a few lines later.
    
    Change-Id: Id979fb7fdaebd05f2432d8917b921d1b1779d8a7
    (cherry picked from commit e5ccf0c141c8d75323623803a3ef21c48c8cd423)
    Reviewed-on: https://gerrit.libreoffice.org/62915
    Reviewed-by: Tor Lillqvist <tml at collabora.com>
    Tested-by: Tor Lillqvist <tml at collabora.com>

diff --git a/sc/source/ui/attrdlg/scabstdlg.cxx b/sc/source/ui/attrdlg/scabstdlg.cxx
index f0582fa7d724..a75cbfb39de9 100644
--- a/sc/source/ui/attrdlg/scabstdlg.cxx
+++ b/sc/source/ui/attrdlg/scabstdlg.cxx
@@ -51,7 +51,7 @@ ScAbstractDialogFactory* ScAbstractDialogFactory::Create()
         fp = reinterpret_cast<ScAbstractDialogFactory* (SAL_CALL*)()>(
             aDialogLibrary.getFunctionSymbol( "ScCreateDialogFactory" ));
 #else
-    fp = ScCreateDialogFactory();
+    fp = ScCreateDialogFactory;
 #endif
 #endif
     if ( fp )


More information about the Libreoffice-commits mailing list