desktop/source/lib/init.cxx | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit 4b2b7c2183c7f46ac8929c61f4cbff7baeab13e1
Author: Patrick Luby <[email protected]>
AuthorDate: Sun Feb 12 16:03:30 2023 -0500
Commit: Patrick Luby <[email protected]>
CommitDate: Sun Feb 12 22:58:19 2023 +0000
Eliminate unused-parameter warning on iOS with Xcode 14.2
Change-Id: Ie7a7f2d66d16a597d92d635fa3c35a17bdd15341
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146844
Reviewed-by: Patrick Luby <[email protected]>
Tested-by: Patrick Luby <[email protected]>
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index ec7b82ef086f..89205e9d45f3 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -5540,6 +5540,8 @@ static void doc_resetSelection(LibreOfficeKitDocument*
pThis)
static char* getLanguages(LibreOfficeKitDocument* pThis, const char* pCommand)
{
+ (void)pThis;
+
css::uno::Sequence< css::lang::Locale > aLocales;
if (xContext.is())