summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-08-28 13:02:21 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-08-29 11:33:26 +0200
commit19588a1f947c5b3bb3f3fc6d5f4f34e4aee5998f (patch)
tree02fb812119216fee4fa702fc683faaf1671b1e43 /sdext
parente6cc643a2ae20aa831734bc9f1d17df3d6fc40bc (diff)
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@collabora.co.uk>
Diffstat (limited to 'sdext')
-rw-r--r--sdext/source/presenter/PresenterButton.cxx6
-rw-r--r--sdext/source/presenter/PresenterButton.hxx2
2 files changed, 4 insertions, 4 deletions
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;