sc/source/ui/attrdlg/scabstdlg.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit c35ed64c259085b8c13459eab91f89bccb1753a4 Author: Tor Lillqvist <[email protected]> AuthorDate: Mon Nov 5 11:31:00 2018 +0200 Commit: Tor Lillqvist <[email protected]> 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 <[email protected]> Tested-by: Tor Lillqvist <[email protected]> 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 ) _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
