sw/source/uibase/misc/glosdoc.cxx | 1 + 1 file changed, 1 insertion(+)
New commits: commit 251d494c6e7a52e125eb05f3981c778c5c67a6f5 Author: Mike Kaganski <[email protected]> AuthorDate: Thu Mar 12 13:57:03 2026 +0100 Commit: Mike Kaganski <[email protected]> CommitDate: Thu Mar 12 18:59:48 2026 +0100 Fix no-pch Windows build C:/lo/core/sw/source/uibase/misc/glosdoc.cxx(452): error C3083: 'FileBase': the symbol to the left of a '::' must be a type C:/lo/core/sw/source/uibase/misc/glosdoc.cxx(452): error C2039: 'getSystemPathFromFileURL': is not a member of 'osl' C:\lo C:/lo/core/sw/source/uibase/misc/glosdoc.cxx(452): error C3861: 'getSystemPathFromFileURL': identifier not found C:/lo/core/sw/source/uibase/misc/glosdoc.cxx(452): error C3083: 'FileBase': the symbol to the left of a '::' must be a type C:/lo/core/sw/source/uibase/misc/glosdoc.cxx(452): error C2039: 'E_None': is not a member of 'osl' C:\lo C:/lo/core/sw/source/uibase/misc/glosdoc.cxx(452): error C2065: 'E_None': undeclared identifier Change-Id: I96d48b961522c508a71c99d3046046842b2ad865 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/201535 Tested-by: Jenkins Reviewed-by: Mike Kaganski <[email protected]> diff --git a/sw/source/uibase/misc/glosdoc.cxx b/sw/source/uibase/misc/glosdoc.cxx index 57858c67baf9..a0c29d64cc61 100644 --- a/sw/source/uibase/misc/glosdoc.cxx +++ b/sw/source/uibase/misc/glosdoc.cxx @@ -33,6 +33,7 @@ #include <vcl/svapp.hxx> #include <vcl/weld/MessageDialog.hxx> #include <osl/diagnose.h> +#include <osl/file.hxx> #include <rtl/character.hxx> #include <svl/urihelper.hxx> #include <svl/fstathelper.hxx>
