[Libreoffice-commits] core.git: starmath/source

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Thu Aug 29 08:08:34 UTC 2019


 starmath/source/dialog.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit c8737dcf827cf47f233d3e8ad39a6348c3e36d10
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Thu Aug 29 08:20:39 2019 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Thu Aug 29 10:07:57 2019 +0200

    Fix typo in code
    
    It passed "make check" on Linux
    
    Change-Id: Id4b7074e696507fc06c1d4c7f670f9f301b5ca54
    Reviewed-on: https://gerrit.libreoffice.org/78249
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Jenkins

diff --git a/starmath/source/dialog.cxx b/starmath/source/dialog.cxx
index a5c68d223ae9..066c4016c07a 100644
--- a/starmath/source/dialog.cxx
+++ b/starmath/source/dialog.cxx
@@ -1198,8 +1198,8 @@ void SmSymbolDialog::FillSymbolSets()
     m_xSymbolSets->clear();
     m_xSymbolSets->set_active(-1);
 
-    std::set< OUString >  aSybolSetNames( rSymbolMgr.GetSymbolSetNames() );
-    for (const auto& rSymbolSetName : aSybolSetNames)
+    std::set< OUString >  aSymbolSetNames( rSymbolMgr.GetSymbolSetNames() );
+    for (const auto& rSymbolSetName : aSymbolSetNames)
         m_xSymbolSets->append_text(rSymbolSetName);
 }
 
@@ -1624,7 +1624,7 @@ IMPL_LINK( SmSymDefineDialog, ChangeClickHdl, weld::Button&, rButton, void )
     assert(&rButton == m_xChangeBtn.get() && "Sm : wrong argument");
     assert(m_xChangeBtn->get_sensitive() && "Sm : requirements met ??");
 
-    // get new Sybol to use
+    // get new Symbol to use
     //! get font from symbol-disp lay since charset-display does not keep
     //! the bold attribute.
     const SmSym aNewSymbol(m_xSymbols->get_active_text(), m_xCharsetDisplay->GetFont(),


More information about the Libreoffice-commits mailing list