summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorPatrick Luby <patrick.luby@collabora.com>2023-02-22 16:22:00 -0500
committerAron Budea <aron.budea@collabora.com>2023-03-15 19:38:40 +0000
commit6720a608a7cc8fb11ae1f0c0bc9210bbf80134f4 (patch)
tree480a291a0deb33d1270a4693d9a0646c431f1a09 /svtools
parent9724250c50d8f890339aa44a1ae43ea81dfabb23 (diff)
Fix build error when compiling on iOS or macOS with Xcode 14.2
Commit 67fcd647341118747a4e7cd404d907d29613778c was missing a return value Signed-off-by: Patrick Luby <patrick.luby@collabora.com> Change-Id: I1e6a0bf2ec65d3bb03eced6518611a7567a34a6b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147492 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Patrick Luby <plubius@neooffice.org> (cherry picked from commit 99e6cbab7bb5954f0ee5792d07e1ba543260f434) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148870 Tested-by: Aron Budea <aron.budea@collabora.com> Reviewed-by: Aron Budea <aron.budea@collabora.com>
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/misc/acceleratorexecute.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/svtools/source/misc/acceleratorexecute.cxx b/svtools/source/misc/acceleratorexecute.cxx
index 099616fe07e2..ebe93bf7daa4 100644
--- a/svtools/source/misc/acceleratorexecute.cxx
+++ b/svtools/source/misc/acceleratorexecute.cxx
@@ -421,6 +421,8 @@ css::uno::Reference<css::ui::XAcceleratorConfiguration> AcceleratorExecute::lok_
}
catch(const css::container::NoSuchElementException&)
{}
+
+ return css::uno::Reference<css::ui::XAcceleratorConfiguration>();
}
void AcceleratorExecute::lok_setModuleConfig(css::uno::Reference<css::ui::XAcceleratorConfiguration> acceleratorConfig)