[Libreoffice-commits] core.git: compilerplugins/clang desktop/source include/osl offapi/com sal/qa sfx2/source svx/qa ucb/source wizards/com

Andrea Gelmini andrea.gelmini at gelma.net
Sat Oct 1 20:12:32 UTC 2016


 compilerplugins/clang/constantparam.cxx               |    2 +-
 compilerplugins/clang/dllprivate.cxx                  |    4 ++--
 desktop/source/app/app.cxx                            |    2 +-
 include/osl/signal.h                                  |    2 +-
 offapi/com/sun/star/sheet/opencl/XOpenCLSelection.idl |    2 +-
 sal/qa/rtl/strings/test_oustring_compare.cxx          |    2 +-
 sfx2/source/appl/appserv.cxx                          |    2 +-
 svx/qa/unoapi/knownissues.xcl                         |   14 +++++++-------
 ucb/source/ucp/webdav-neon/DAVResourceAccess.cxx      |    2 +-
 wizards/com/sun/star/wizards/web/WWD_Startup.py       |    2 +-
 10 files changed, 17 insertions(+), 17 deletions(-)

New commits:
commit c0bcdde2a048b6e5465a14182947c09fcd170d45
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Sat Oct 1 17:45:29 2016 +0200

    Fix typos
    
    Change-Id: I6aeda978911b25caa45d4e459e581fc743e93d2c
    Reviewed-on: https://gerrit.libreoffice.org/29442
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/compilerplugins/clang/constantparam.cxx b/compilerplugins/clang/constantparam.cxx
index c517e59..550cdd1 100644
--- a/compilerplugins/clang/constantparam.cxx
+++ b/compilerplugins/clang/constantparam.cxx
@@ -188,7 +188,7 @@ bool ConstantParam::VisitCallExpr(const CallExpr * callExpr) {
         return true;
     }
     functionDecl = functionDecl->getCanonicalDecl();
-    // method overrides don't always specify the same default params (althogh they probably should)
+    // method overrides don't always specify the same default params (although they probably should)
     // so we need to work our way up to the root method
     while (isa<CXXMethodDecl>(functionDecl)) {
         const CXXMethodDecl* methodDecl = dyn_cast<CXXMethodDecl>(functionDecl);
diff --git a/compilerplugins/clang/dllprivate.cxx b/compilerplugins/clang/dllprivate.cxx
index d94ac3a..05cf26d 100644
--- a/compilerplugins/clang/dllprivate.cxx
+++ b/compilerplugins/clang/dllprivate.cxx
@@ -58,9 +58,9 @@ public:
 
 private:
     void run() override {
-        // DISABLE_DYNLOADING makes SAL_DLLPUBLIC_{EXPORT,IMPORT,TEMPLAT} expand
+        // DISABLE_DYNLOADING makes SAL_DLLPUBLIC_{EXPORT,IMPORT,TEMPLATE} expand
         // to visibility("hidden") attributes, which would cause bogus warnings
-        // here (e.g., in UBSan builds that explicitly define DISBALE_DYNLOADING
+        // here (e.g., in UBSan builds that explicitly define DISABLE_DYNLOADING
         // in jurt/source/pipe/staticsalhack.cxx); alternatively, change
         // include/sal/types.h to make those SAL_DLLPUBLIC_* expand to nothing
         // for DISABLE_DYNLOADING:
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index 732507b..1805d60 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -1941,7 +1941,7 @@ IMPL_LINK_NOARG_TYPED(Desktop, OpenClients_Impl, void*, void)
         // ALSO:
         //
         // Multiple clients may request simultaneous connections.
-        // When this server closes down it attempts to recreate the pipe (in RequestHander::Disable()).
+        // When this server closes down it attempts to recreate the pipe (in RequestHandler::Disable()).
         // It's possible that the client has a pending connection request.
         // When the IPC thread is not running, this connection locks (because maPipe.accept()) is never called
         RequestHandler::SetReady();
diff --git a/include/osl/signal.h b/include/osl/signal.h
index 539ae0d..9642534 100644
--- a/include/osl/signal.h
+++ b/include/osl/signal.h
@@ -95,7 +95,7 @@ SAL_DLLPUBLIC oslSignalAction SAL_CALL osl_raiseSignal(
 
     @return
     sal_True if previous state of error reporting was enabled<br>
-    sal_False if previous state of error reporting was disbaled<br>
+    sal_False if previous state of error reporting was disabled<br>
 */
 
 SAL_DLLPUBLIC sal_Bool SAL_CALL osl_setErrorReporting(
diff --git a/offapi/com/sun/star/sheet/opencl/XOpenCLSelection.idl b/offapi/com/sun/star/sheet/opencl/XOpenCLSelection.idl
index a0861a4..3fb7430 100644
--- a/offapi/com/sun/star/sheet/opencl/XOpenCLSelection.idl
+++ b/offapi/com/sun/star/sheet/opencl/XOpenCLSelection.idl
@@ -38,7 +38,7 @@ interface XOpenCLSelection : com::sun::star::uno::XInterface
     void enableAutomaticDeviceSelection( [in] boolean force );
 
     /**
-     * Disbales automatic OpenCL Device Selection
+     * Disables automatic OpenCL Device Selection
      */
     void disableAutomaticDeviceSelection();
 
diff --git a/sal/qa/rtl/strings/test_oustring_compare.cxx b/sal/qa/rtl/strings/test_oustring_compare.cxx
index 77f2fb7..da3cd57 100644
--- a/sal/qa/rtl/strings/test_oustring_compare.cxx
+++ b/sal/qa/rtl/strings/test_oustring_compare.cxx
@@ -78,7 +78,7 @@ void test::oustring::Compare::compareToIgnoreAsciiCase()
 void test::oustring::Compare::compareTo()
 {
     // test that embedded NUL does not stop the compare
-    // this sort of thing is how we assing shape ids in oox
+    // this sort of thing is how we assign shape ids in oox
     sal_Unicode str1[2] = { '\0', 'x' };
     sal_Unicode str2[2] = { '\0', 'y' };
 
diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx
index 40811c2..14b9aa8 100644
--- a/sfx2/source/appl/appserv.cxx
+++ b/sfx2/source/appl/appserv.cxx
@@ -732,7 +732,7 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq )
                     break;
                 }
 
-                // Save new toolar mode for a current module
+                // Save new toolbar mode for a current module
                 aAppNode.setNodeValue( "Active", makeAny( aNewName ) );
                 aAppNode.commit();
             }
diff --git a/svx/qa/unoapi/knownissues.xcl b/svx/qa/unoapi/knownissues.xcl
index be69c62..e5d4b3a 100644
--- a/svx/qa/unoapi/knownissues.xcl
+++ b/svx/qa/unoapi/knownissues.xcl
@@ -19,19 +19,19 @@
 ### i85263 ###
 svx.SvxShape::com::sun::star::drawing::TextProperties::TextWritingMode
 svx.SvxShapeConnector::com::sun::star::drawing::TextProperties::TextWritingMode
-# -> disbaled in svx.sce
+# -> disabled in svx.sce
 
 ### i46736 ###
 svx.AccessibleImageBullet
-# -> disbaled in svx.sce
+# -> disabled in svx.sce
 
-### i85501 ### 
+### i85501 ###
 svx.SvxGraphCtrlAccessibleContext
-# -> disbaled in svx.sce
+# -> disabled in svx.sce
 
 ### i85539 ###
 svx.AccessiblePresentationShape
-# -> disbaled in svx.sce
+# -> disabled in svx.sce
 
 ### i85476 ###
 svx.SvxUnoText::com::sun::star::text::XTextRangeMover
@@ -92,11 +92,11 @@ svx.SvxUnoTextRange::com::sun::star::beans::XPropertySet
 
 ### i90294 ###
 svx.GraphicExporter
-# -> disbaled in svx.sce
+# -> disabled in svx.sce
 
 ### i98339 ###
 svx.AccessibleControlShape
-# -> disbaled in svx.sce
+# -> disabled in svx.sce
 
 ### i111114 ###
 svx.AccessiblePresentationOLEShape::com::sun::star::accessibility::XAccessibleComponent
diff --git a/ucb/source/ucp/webdav-neon/DAVResourceAccess.cxx b/ucb/source/ucp/webdav-neon/DAVResourceAccess.cxx
index d77174e..3f68591 100644
--- a/ucb/source/ucp/webdav-neon/DAVResourceAccess.cxx
+++ b/ucb/source/ucp/webdav-neon/DAVResourceAccess.cxx
@@ -1262,7 +1262,7 @@ bool DAVResourceAccess::handleException( const DAVException & e, int errorCount
         switch( e.getStatus() )
         {
             // the HTTP server side response status codes that can be retried
-            case SC_BAD_GATEWAY:        // retry, can be an eccessive load
+            case SC_BAD_GATEWAY:        // retry, can be an excessive load
             case SC_GATEWAY_TIMEOUT:    // retry, may be we get lucky
             case SC_SERVICE_UNAVAILABLE: // retry, the service may become available
             case SC_INSUFFICIENT_STORAGE: // space may be freed, retry
diff --git a/wizards/com/sun/star/wizards/web/WWD_Startup.py b/wizards/com/sun/star/wizards/web/WWD_Startup.py
index c789c19..2c23510 100644
--- a/wizards/com/sun/star/wizards/web/WWD_Startup.py
+++ b/wizards/com/sun/star/wizards/web/WWD_Startup.py
@@ -613,7 +613,7 @@ class WWD_Startup(WWD_General):
     '''
     Disables/enables the docUpDown buttons (step 2)
     according to the currently selected document
-    (no doc selected - both disbaled, last doc selected,
+    (no doc selected - both disabled, last doc selected,
     down disabled and so on...)
     '''
 


More information about the Libreoffice-commits mailing list