[Libreoffice-commits] core.git: filter/source framework/source sw/source vcl/source xmloff/source

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Fri Aug 9 14:15:59 UTC 2019


 filter/source/config/cache/filtercache.hxx |    2 +-
 framework/source/loadenv/loadenv.cxx       |    4 ++--
 framework/source/services/desktop.cxx      |    4 ++--
 sw/source/core/layout/tabfrm.cxx           |    2 +-
 sw/source/filter/ww8/ww8scan.cxx           |    2 +-
 vcl/source/fontsubset/sft.cxx              |    2 +-
 xmloff/source/draw/eventimp.cxx            |    2 +-
 7 files changed, 9 insertions(+), 9 deletions(-)

New commits:
commit 42cfb5d0306300c448b54d8d7dd3bad21f7dfe55
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Fri Aug 9 15:07:20 2019 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Fri Aug 9 16:14:47 2019 +0200

    Fix typos
    
    "its really"
    
    Change-Id: Ic0b41597c83be6c1c66b9cdf6ccbf80b0c2bc9ef
    Reviewed-on: https://gerrit.libreoffice.org/77204
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

diff --git a/filter/source/config/cache/filtercache.hxx b/filter/source/config/cache/filtercache.hxx
index c9a51fb8657e..14b6ac48640b 100644
--- a/filter/source/config/cache/filtercache.hxx
+++ b/filter/source/config/cache/filtercache.hxx
@@ -423,7 +423,7 @@ class FilterCache : public BaseLock
             @attention  This method exists to supports some UNO container interfaces
                         only. (e.g. XNameAccess.hasByName()). But inside multithreaded
                         environments there is no guarantee, that this item still exists, if
-                        its really requested e.g. by calling getItem()!
+                        it's really requested e.g. by calling getItem()!
                         Be aware of some NoSuchElementExistExceptions ...
 
             @param      eType
diff --git a/framework/source/loadenv/loadenv.cxx b/framework/source/loadenv/loadenv.cxx
index 6fe947adc645..3e8fbdde334b 100644
--- a/framework/source/loadenv/loadenv.cxx
+++ b/framework/source/loadenv/loadenv.cxx
@@ -252,7 +252,7 @@ void LoadEnv::initializeLoading(const OUString& sURL, const uno::Sequence<beans:
     if (!tools::IsMappedWebDAVPath(sURL, &aRealURL))
         aRealURL = sURL;
 
-    // try to find out, if its really a content, which can be loaded or must be "handled"
+    // try to find out, if it's really a content, which can be loaded or must be "handled"
     // We use a default value for this in-parameter. Then we have to start a complex check method
     // internally. But if this check was already done outside it can be suppressed to perform
     // the load request. We take over the result then!
@@ -1343,7 +1343,7 @@ css::uno::Reference< css::frame::XFrame > LoadEnv::impl_searchAlreadyLoaded()
             }
 
             // get the original load arguments from the current document
-            // and decide if its really the same then the one will be.
+            // and decide if it's really the same then the one will be.
             // It must be visible and must use the same file revision ...
             // or must not have any file revision set (-1 == -1!)
             utl::MediaDescriptor lOldDocDescriptor(xModel->getArgs());
diff --git a/framework/source/services/desktop.cxx b/framework/source/services/desktop.cxx
index ce3c4ed06d95..22dbfcd30e35 100644
--- a/framework/source/services/desktop.cxx
+++ b/framework/source/services/desktop.cxx
@@ -441,7 +441,7 @@ void SAL_CALL Desktop::addTerminateListener( const css::uno::Reference< css::fra
         }
     }
 
-    // No lock required ... container is threadsafe by itself.
+    // No lock required... container is threadsafe by itself.
     m_aListenerContainer.addInterface( cppu::UnoType<css::frame::XTerminateListener>::get(), xListener );
 }
 
@@ -731,7 +731,7 @@ css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > > SAL_CALL Desk
     @short      supports registration/deregistration of interception objects, which
                 are interested on special dispatches.
 
-    @descr      Its really provided by an internal helper, which is used inside the dispatch api too.
+    @descr      It's really provided by an internal helper, which is used inside the dispatch API too.
     @param      xInterceptor
                 the interceptor object, which wish to be (de)registered.
 
diff --git a/sw/source/core/layout/tabfrm.cxx b/sw/source/core/layout/tabfrm.cxx
index 1332fe1e3dda..bfe8a7a9e4ea 100644
--- a/sw/source/core/layout/tabfrm.cxx
+++ b/sw/source/core/layout/tabfrm.cxx
@@ -2388,7 +2388,7 @@ void SwTabFrame::MakeAll(vcl::RenderContext* pRenderContext)
                 m_bLowersFormatted = true;
                 aNotify.SetLowersComplete( true );
 
-                // One more check if its really necessary to split the table.
+                // One more check if it's really necessary to split the table.
                 // 1. The table either has to exceed the deadline or
                 // 2. We explicitly want to cut off the last row.
                 if( aRectFnSet.BottomDist( getFrameArea(), nDeadLine ) > 0 && !bLastRowHasToMoveToFollow )
diff --git a/sw/source/filter/ww8/ww8scan.cxx b/sw/source/filter/ww8/ww8scan.cxx
index e74a6907bec1..4a79345d38eb 100644
--- a/sw/source/filter/ww8/ww8scan.cxx
+++ b/sw/source/filter/ww8/ww8scan.cxx
@@ -8332,7 +8332,7 @@ LanguageType WW8DopTypography::GetConvertedLang() const
             nLang = LANGUAGE_CHINESE_SIMPLIFIED_LEGACY;
             break;
         case 0:
-            //And here we have the possibility that it says 2, but its really
+            //And here we have the possibility that it says 2, but it's really
             //a bug and only japanese level 2 has been selected after a custom
             //version was chosen on last save!
             nLang = LANGUAGE_JAPANESE;
diff --git a/vcl/source/fontsubset/sft.cxx b/vcl/source/fontsubset/sft.cxx
index 9492f2ed347c..a7f2161309cc 100644
--- a/vcl/source/fontsubset/sft.cxx
+++ b/vcl/source/fontsubset/sft.cxx
@@ -1419,7 +1419,7 @@ SFErrCodes OpenTTFontFile( const char* fname, sal_uInt32 facenum, TrueTypeFont**
     (*ttf)->fsize = st.st_size;
 
     /* On Mac OS, most likely will happen if a Mac user renames a font file
-     * to be .ttf when its really a Mac resource-based font.
+     * to be .ttf when it's really a Mac resource-based font.
      * Size will be 0, but fonts smaller than 4 bytes would be broken anyway.
      */
     if ((*ttf)->fsize == 0) {
diff --git a/xmloff/source/draw/eventimp.cxx b/xmloff/source/draw/eventimp.cxx
index bfeb15bc25e3..6312a32510a7 100644
--- a/xmloff/source/draw/eventimp.cxx
+++ b/xmloff/source/draw/eventimp.cxx
@@ -372,7 +372,7 @@ void SdXMLEventContext::EndElement()
             pProperties++;
 
             // ClickAction_BOOKMARK and ClickAction_DOCUMENT share the same xml event
-            // so check here if its really a bookmark or maybe a document
+            // so check here if it's really a bookmark or maybe a document
             if( meClickAction == ClickAction_BOOKMARK )
             {
                 if( !msBookmark.startsWith( "#" ) )


More information about the Libreoffice-commits mailing list