forms/source/component/Button.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 9da6180d4d593b16838fe035261d6c1e568b24c0
Author:     Andrea Gelmini <andrea.gelm...@gelma.net>
AuthorDate: Fri Sep 25 13:26:04 2020 +0200
Commit:     Julien Nabet <serval2...@yahoo.fr>
CommitDate: Sat Sep 26 12:49:42 2020 +0200

    Fix typo in code
    
    It passed "make check" on Linux
    
    Change-Id: I823a0ae998addb620b490b649e1369106f8f4e8e
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103462
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2...@yahoo.fr>

diff --git a/forms/source/component/Button.cxx 
b/forms/source/component/Button.cxx
index 0044068c13b3..70f80a6c8c38 100644
--- a/forms/source/component/Button.cxx
+++ b/forms/source/component/Button.cxx
@@ -200,9 +200,9 @@ void OButtonModel::read(const 
Reference<XObjectInputStream>& _rxInStream)
             readHelpTextCompatibly(_rxInStream);
 
             // DispatchInternal
-            bool bDispath;
-            _rxInStream >> bDispath;
-            setDispatchUrlInternal(bDispath);
+            bool bDispatch;
+            _rxInStream >> bDispatch;
+            setDispatchUrlInternal(bDispatch);
         }
         break;
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to