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.gelm...@gelma.net>
AuthorDate: Fri Aug 28 13:02:21 2020 +0200
Commit:     Noel Grandin <noel.gran...@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.gran...@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;
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to