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

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Mon Aug 12 08:59:46 UTC 2019


 sc/source/ui/inc/AccessiblePreviewCell.hxx       |    2 +-
 sc/source/ui/inc/AccessiblePreviewHeaderCell.hxx |    2 +-
 sc/source/ui/inc/AccessibleSpreadsheet.hxx       |    2 +-
 sc/source/ui/inc/AccessibleTableBase.hxx         |    2 +-
 sc/source/ui/inc/AccessibleText.hxx              |    2 +-
 sc/source/ui/inc/inputwin.hxx                    |    2 +-
 sc/source/ui/miscdlgs/datafdlg.cxx               |    2 +-
 sc/source/ui/unoobj/afmtuno.cxx                  |    4 ++--
 sc/source/ui/unoobj/appluno.cxx                  |    4 ++--
 9 files changed, 11 insertions(+), 11 deletions(-)

New commits:
commit d443cd31f3845b0eccd65c9a354e8e9b6edfa07e
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Sun Aug 11 18:47:25 2019 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Mon Aug 12 10:58:45 2019 +0200

    Fix typos
    
    Change-Id: I6ceb04830192bd6415cb41688bb604fccc25a882
    Reviewed-on: https://gerrit.libreoffice.org/77294
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

diff --git a/sc/source/ui/inc/AccessiblePreviewCell.hxx b/sc/source/ui/inc/AccessiblePreviewCell.hxx
index 0a60751d2255..71410e0435ba 100644
--- a/sc/source/ui/inc/AccessiblePreviewCell.hxx
+++ b/sc/source/ui/inc/AccessiblePreviewCell.hxx
@@ -73,7 +73,7 @@ public:
 
     ///=====  XTypeProvider  ===================================================
 
-    /** Returns a implementation id.
+    /** Returns an implementation id.
     */
     virtual css::uno::Sequence<sal_Int8> SAL_CALL
         getImplementationId() override;
diff --git a/sc/source/ui/inc/AccessiblePreviewHeaderCell.hxx b/sc/source/ui/inc/AccessiblePreviewHeaderCell.hxx
index 65293b5692c9..e50ecec497f9 100644
--- a/sc/source/ui/inc/AccessiblePreviewHeaderCell.hxx
+++ b/sc/source/ui/inc/AccessiblePreviewHeaderCell.hxx
@@ -99,7 +99,7 @@ public:
     virtual css::uno::Sequence< css::uno::Type > SAL_CALL
         getTypes() override;
 
-    /** Returns a implementation id.
+    /** Returns an implementation id.
     */
     virtual css::uno::Sequence<sal_Int8> SAL_CALL
         getImplementationId() override;
diff --git a/sc/source/ui/inc/AccessibleSpreadsheet.hxx b/sc/source/ui/inc/AccessibleSpreadsheet.hxx
index 7330f4743734..5bcccacf8fbc 100644
--- a/sc/source/ui/inc/AccessibleSpreadsheet.hxx
+++ b/sc/source/ui/inc/AccessibleSpreadsheet.hxx
@@ -187,7 +187,7 @@ private:
 
     ///=====  XTypeProvider  ===================================================
 
-    /** Returns a implementation id.
+    /** Returns an implementation id.
     */
     virtual css::uno::Sequence<sal_Int8> SAL_CALL
         getImplementationId() override;
diff --git a/sc/source/ui/inc/AccessibleTableBase.hxx b/sc/source/ui/inc/AccessibleTableBase.hxx
index a7e8a606788b..895eac8913fb 100644
--- a/sc/source/ui/inc/AccessibleTableBase.hxx
+++ b/sc/source/ui/inc/AccessibleTableBase.hxx
@@ -218,7 +218,7 @@ public:
     virtual css::uno::Sequence< css::uno::Type > SAL_CALL
         getTypes() override;
 
-    /** Returns a implementation id.
+    /** Returns an implementation id.
     */
     virtual css::uno::Sequence<sal_Int8> SAL_CALL
         getImplementationId() override;
diff --git a/sc/source/ui/inc/AccessibleText.hxx b/sc/source/ui/inc/AccessibleText.hxx
index cf96a1d50254..1ce9fb46dfaa 100644
--- a/sc/source/ui/inc/AccessibleText.hxx
+++ b/sc/source/ui/inc/AccessibleText.hxx
@@ -72,7 +72,7 @@ public:
     virtual void                UpdateData() override { ScCellTextData::UpdateData(); }
 };
 
-//  ScAccessibleCellTextData: shared data between sub objects of a accessible cell text object
+//  ScAccessibleCellTextData: shared data between sub objects of an accessible cell text object
 
 class ScAccessibleCellTextData : public ScAccessibleCellBaseTextData
 {
diff --git a/sc/source/ui/inc/inputwin.hxx b/sc/source/ui/inc/inputwin.hxx
index ebcd6656bb4a..e4317794beeb 100644
--- a/sc/source/ui/inc/inputwin.hxx
+++ b/sc/source/ui/inc/inputwin.hxx
@@ -133,7 +133,7 @@ private:
     vcl::Font   aTextFont;
     std::unique_ptr<ScEditEngineDefaulter> mpEditEngine; // only created when needed
     std::unique_ptr<EditView> mpEditView;
-    AccTextDataVector maAccTextDatas;   // #i105267# text datas may be cloned, remember all copies
+    AccTextDataVector maAccTextDatas;   // #i105267# text data may be cloned, remember all copies
     bool        bIsRTL;
     bool        bIsInsertMode;
     bool        bFormulaMode;
diff --git a/sc/source/ui/miscdlgs/datafdlg.cxx b/sc/source/ui/miscdlgs/datafdlg.cxx
index 7e1be6f40e00..1e0fed27c45f 100644
--- a/sc/source/ui/miscdlgs/datafdlg.cxx
+++ b/sc/source/ui/miscdlgs/datafdlg.cxx
@@ -43,7 +43,7 @@ ScDataFormDlg::ScDataFormDlg(weld::Window* pParent, ScTabViewShell* pTabViewShel
 
     sNewRecord = m_xFixedText->get_label();
 
-    //read header form current document, and add new controls
+    //read header from current document, and add new controls
     OSL_ENSURE( pTabViewShell, "pTabViewShell is NULL! :-/" );
     ScViewData& rViewData = pTabViewShell->GetViewData();
 
diff --git a/sc/source/ui/unoobj/afmtuno.cxx b/sc/source/ui/unoobj/afmtuno.cxx
index 013a5b2c3cbc..81ad9b333cc2 100644
--- a/sc/source/ui/unoobj/afmtuno.cxx
+++ b/sc/source/ui/unoobj/afmtuno.cxx
@@ -45,7 +45,7 @@
 
 using namespace ::com::sun::star;
 
-//  a AutoFormat has always 16 entries
+//  an AutoFormat has always 16 entries
 #define SC_AF_FIELD_COUNT 16
 
 //  AutoFormat map only for PropertySetInfo without Which-IDs
@@ -339,7 +339,7 @@ ScAutoFormatObj::ScAutoFormatObj(sal_uInt16 nIndex) :
 
 ScAutoFormatObj::~ScAutoFormatObj()
 {
-    //  If a AutoFormat object is released, then eventually changes are saved
+    //  If an AutoFormat object is released, then eventually changes are saved
     //  so that they become visible in e.g Writer
 
     if (IsInserted())
diff --git a/sc/source/ui/unoobj/appluno.cxx b/sc/source/ui/unoobj/appluno.cxx
index 69fd6381d252..e256ec67ba26 100644
--- a/sc/source/ui/unoobj/appluno.cxx
+++ b/sc/source/ui/unoobj/appluno.cxx
@@ -606,7 +606,7 @@ uno::Any SAL_CALL ScFunctionListObj::getByName( const OUString& aName )
     for (sal_uInt16 nIndex=0; nIndex<nCount; nIndex++)
     {
         const ScFuncDesc* pDesc = pFuncList->GetFunction(nIndex);
-        //! Case-insensitiv ???
+        //! Case-insensitive???
         if ( pDesc && pDesc->mxFuncName && aName == *pDesc->mxFuncName )
         {
             uno::Sequence<beans::PropertyValue> aSeq( SC_FUNCDESC_PROPCOUNT );
@@ -703,7 +703,7 @@ sal_Bool SAL_CALL ScFunctionListObj::hasByName( const OUString& aName )
         for (sal_uInt32 nIndex=0; nIndex<nCount; ++nIndex)
         {
             const ScFuncDesc* pDesc = pFuncList->GetFunction(nIndex);
-            //! Case-insensitiv ???
+            //! Case-insensitive???
             if ( pDesc && pDesc->mxFuncName && aName == *pDesc->mxFuncName )
                 return true;
         }


More information about the Libreoffice-commits mailing list