[Libreoffice-commits] core.git: sdext/source
Andrea Gelmini (via logerrit)
logerrit at kemper.freedesktop.org
Sat Aug 29 09:34:25 UTC 2020
sdext/source/presenter/PresenterButton.cxx | 6 +++---
sdext/source/presenter/PresenterButton.hxx | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
New commits:
commit 19588a1f947c5b3bb3f3fc6d5f4f34e4aee5998f
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Fri Aug 28 13:02:21 2020 +0200
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Sat Aug 29 11:33:26 2020 +0200
Fix typo in code
It passed "make check" on Linux
Change-Id: I8d393bf42be181fad18829a46393714a95f32000
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101607
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
diff --git a/sdext/source/presenter/PresenterButton.cxx b/sdext/source/presenter/PresenterButton.cxx
index 2f1a7767a57d..329ff8399064 100644
--- a/sdext/source/presenter/PresenterButton.cxx
+++ b/sdext/source/presenter/PresenterButton.cxx
@@ -419,7 +419,7 @@ void PresenterButton::SetupButtonBitmaps()
Reference<beans::XPropertySet> PresenterButton::GetConfigurationProperties (
const css::uno::Reference<css::uno::XComponentContext>& rxComponentContext,
- const OUString& rsConfgurationName)
+ const OUString& rsConfigurationName)
{
PresenterConfigurationAccess aConfiguration (
rxComponentContext,
@@ -430,10 +430,10 @@ Reference<beans::XPropertySet> PresenterButton::GetConfigurationProperties (
Reference<container::XNameAccess>(
aConfiguration.GetConfigurationNode("PresenterScreenSettings/Buttons"),
UNO_QUERY),
- [&rsConfgurationName](OUString const&, uno::Reference<beans::XPropertySet> const& xProps) -> bool
+ [&rsConfigurationName](OUString const&, uno::Reference<beans::XPropertySet> const& xProps) -> bool
{
return PresenterConfigurationAccess::IsStringPropertyEqual(
- rsConfgurationName, "Name", xProps);
+ rsConfigurationName, "Name", xProps);
}),
UNO_QUERY);
}
diff --git a/sdext/source/presenter/PresenterButton.hxx b/sdext/source/presenter/PresenterButton.hxx
index 07125f71ee73..f722e7da1c52 100644
--- a/sdext/source/presenter/PresenterButton.hxx
+++ b/sdext/source/presenter/PresenterButton.hxx
@@ -125,7 +125,7 @@ private:
void SetupButtonBitmaps();
static css::uno::Reference<css::beans::XPropertySet> GetConfigurationProperties (
const css::uno::Reference<css::uno::XComponentContext>& rxComponentContext,
- const OUString& rsConfgurationName);
+ const OUString& rsConfigurationName);
/// @throws css::lang::DisposedException
void ThrowIfDisposed() const;
More information about the Libreoffice-commits
mailing list