CppunitTest_sc_tiledrendering2: move to tiledrendering folder
[LibreOffice.git] / unotools / source / misc / defaultencoding.cxx
blobc06e61b9c98c682d05b74de66dc5072214b3325a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #include <sal/config.h>
12 #include <unotools/configmgr.hxx>
13 #include <unotools/defaultencoding.hxx>
14 #include <officecfg/Office/Linguistic.hxx>
15 #include <officecfg/Setup.hxx>
16 #include <officecfg/System.hxx>
18 OUString utl_getLocaleForGlobalDefaultEncoding()
20 if (comphelper::IsFuzzing())
21 return u"en-US"_ustr;
22 // First try document default language
23 OUString result(officecfg::Office::Linguistic::General::DefaultLocale::get());
24 // Fallback to LO locale
25 if (result.isEmpty())
26 result = officecfg::Setup::L10N::ooSetupSystemLocale::get();
27 // Fallback to system locale
28 if (result.isEmpty())
29 result = officecfg::System::L10N::Locale::get();
30 return result;
33 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */