You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ms...@apache.org on 2018/04/22 00:00:24 UTC

svn commit: r1829759 - in /openoffice/trunk/main: extensions/source/update/check/updatecheckconfig.hxx sc/source/ui/miscdlgs/retypepassdlg.src svtools/source/java/javaerror.src

Author: mseidel
Date: Sun Apr 22 00:00:24 2018
New Revision: 1829759

URL: http://svn.apache.org/viewvc?rev=1829759&view=rev
Log:
Fixed typos, removed whitespace

Modified:
    openoffice/trunk/main/extensions/source/update/check/updatecheckconfig.hxx
    openoffice/trunk/main/sc/source/ui/miscdlgs/retypepassdlg.src
    openoffice/trunk/main/svtools/source/java/javaerror.src

Modified: openoffice/trunk/main/extensions/source/update/check/updatecheckconfig.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/extensions/source/update/check/updatecheckconfig.hxx?rev=1829759&r1=1829758&r2=1829759&view=diff
==============================================================================
--- openoffice/trunk/main/extensions/source/update/check/updatecheckconfig.hxx (original)
+++ openoffice/trunk/main/extensions/source/update/check/updatecheckconfig.hxx Sun Apr 22 00:00:24 2018
@@ -32,7 +32,7 @@
 #include "updatecheckconfiglistener.hxx"
 #include "updateinfo.hxx"
 
-/* Interface to access configuration data read-only */ 
+/* Interface to access configuration data read-only */
 struct IByNameAccess
 {
     virtual ::com::sun::star::uno::Any getValue(const sal_Char * pName) = 0;
@@ -79,9 +79,9 @@ private:
 
 
 
-/* This class implements the non published UNO service com.sun.star.setup.UpdateCheckConfig, 
- * which primary use is to be able to track changes done in the Toos -> Options page of this
- * component, as this is not supported by the OOo configuration for extendable groups.
+/* This class implements the non published UNO service com.sun.star.setup.UpdateCheckConfig,
+ * which primary use is to be able to track changes done in the Tools -> Options page of this
+ * component, as this is not supported by the AOO configuration for extendable groups.
  */
 
 class UpdateCheckConfig : public ::cppu::WeakImplHelper3<
@@ -110,10 +110,10 @@ public:
     bool isAutoDownloadEnabled() const;
     rtl::OUString getUpdateEntryVersion() const;
 
-    /* Updates the timestamp of last check, but does not commit the change 
-     * as either clearUpdateFound() or setUpdateFound() are expected to get 
+    /* Updates the timestamp of last check, but does not commit the change
+     * as either clearUpdateFound() or setUpdateFound() are expected to get
      * called next.
-     */ 
+     */
     void updateLastChecked();
 
     /* Returns the date of the last successful check in seconds since 1970 */
@@ -158,44 +158,44 @@ public:
                                 const rtl::OUString& rVersion );
 
     // XElementAccess
-    virtual ::com::sun::star::uno::Type SAL_CALL getElementType(  ) 
+    virtual ::com::sun::star::uno::Type SAL_CALL getElementType(  )
         throw (::com::sun::star::uno::RuntimeException);
-    virtual sal_Bool SAL_CALL hasElements(  ) 
+    virtual sal_Bool SAL_CALL hasElements(  )
         throw (::com::sun::star::uno::RuntimeException);
     
     // XNameAccess
-    virtual ::com::sun::star::uno::Any SAL_CALL getByName( const ::rtl::OUString& aName ) 
-        throw (::com::sun::star::container::NoSuchElementException, 
-               ::com::sun::star::lang::WrappedTargetException, 
+    virtual ::com::sun::star::uno::Any SAL_CALL getByName( const ::rtl::OUString& aName )
+        throw (::com::sun::star::container::NoSuchElementException,
+               ::com::sun::star::lang::WrappedTargetException,
                ::com::sun::star::uno::RuntimeException);
-    virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getElementNames(  ) 
+    virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getElementNames(  )
         throw (::com::sun::star::uno::RuntimeException);
-    virtual ::sal_Bool SAL_CALL hasByName( const ::rtl::OUString& aName ) 
+    virtual ::sal_Bool SAL_CALL hasByName( const ::rtl::OUString& aName )
         throw (::com::sun::star::uno::RuntimeException);
     
     // XNameReplace
     virtual void SAL_CALL replaceByName( const ::rtl::OUString& aName, const ::com::sun::star::uno::Any& aElement )
-        throw (::com::sun::star::lang::IllegalArgumentException, 
-               ::com::sun::star::container::NoSuchElementException, 
-               ::com::sun::star::lang::WrappedTargetException, 
+        throw (::com::sun::star::lang::IllegalArgumentException,
+               ::com::sun::star::container::NoSuchElementException,
+               ::com::sun::star::lang::WrappedTargetException,
                ::com::sun::star::uno::RuntimeException);
     
     // XChangesBatch
-    virtual void SAL_CALL commitChanges(  ) 
-        throw (::com::sun::star::lang::WrappedTargetException, 
+    virtual void SAL_CALL commitChanges(  )
+        throw (::com::sun::star::lang::WrappedTargetException,
                ::com::sun::star::uno::RuntimeException);
     virtual ::sal_Bool SAL_CALL hasPendingChanges(  )
         throw (::com::sun::star::uno::RuntimeException);
-    virtual ::com::sun::star::uno::Sequence< ::com::sun::star::util::ElementChange > SAL_CALL getPendingChanges(  ) 
+    virtual ::com::sun::star::uno::Sequence< ::com::sun::star::util::ElementChange > SAL_CALL getPendingChanges(  )
         throw (::com::sun::star::uno::RuntimeException);
 
     // XServiceInfo
-    virtual rtl::OUString SAL_CALL getImplementationName() 
+    virtual rtl::OUString SAL_CALL getImplementationName()
+        throw (::com::sun::star::uno::RuntimeException);
+    virtual sal_Bool SAL_CALL supportsService(rtl::OUString const & serviceName)
         throw (::com::sun::star::uno::RuntimeException);
-    virtual sal_Bool SAL_CALL supportsService(rtl::OUString const & serviceName) 
+    virtual ::com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames()
         throw (::com::sun::star::uno::RuntimeException);
-    virtual ::com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames() 
-        throw (::com::sun::star::uno::RuntimeException);   
 
 private:
 

Modified: openoffice/trunk/main/sc/source/ui/miscdlgs/retypepassdlg.src
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/ui/miscdlgs/retypepassdlg.src?rev=1829759&r1=1829758&r2=1829759&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/ui/miscdlgs/retypepassdlg.src (original)
+++ openoffice/trunk/main/sc/source/ui/miscdlgs/retypepassdlg.src Sun Apr 22 00:00:24 2018
@@ -58,7 +58,7 @@ ModalDialog RID_SCDLG_RETYPEPASS
 
         WordBreak = TRUE ;
 
-        Text [ en-US ] = "The document you are about to export has one or more protected items with password that cannot be exported.  Please re-type your password to be able to export your document." ;
+        Text [ en-US ] = "The document you are about to export has one or more protected items with password that cannot be exported. Please re-type your password to be able to export your document." ;
     };
 
     FixedLine FL_DOCUMENT

Modified: openoffice/trunk/main/svtools/source/java/javaerror.src
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/svtools/source/java/javaerror.src?rev=1829759&r1=1829758&r2=1829759&view=diff
==============================================================================
--- openoffice/trunk/main/svtools/source/java/javaerror.src (original)
+++ openoffice/trunk/main/svtools/source/java/javaerror.src Sun Apr 22 00:00:24 2018
@@ -48,7 +48,7 @@ ErrorBox ERRORBOX_JVMCREATIONFAILED
 {
 	Buttons = WB_OK;
 	DefButton = WB_DEF_OK ;
-	Message[ en-US ] = "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select  it under Tools - Options - %PRODUCTNAME - Java."; 
+	Message[ en-US ] = "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Java."; 
 };
 
 ErrorBox ERRORBOX_RESTARTREQUIRED