[Libreoffice-commits] .: UnoControls/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Wed Sep 12 09:23:35 PDT 2012


 UnoControls/source/inc/progressmonitor.hxx |   28 ++++++++++++++--------------
 UnoControls/source/inc/statusindicator.hxx |    8 ++++----
 2 files changed, 18 insertions(+), 18 deletions(-)

New commits:
commit 29c3a013b5ee7e209a24f48ec1be2262602bd011
Author: Ricardo Montania <ricardo at linuxafundo.com.br>
Date:   Wed Sep 12 13:03:33 2012 -0300

    Finished ::rtl::OUString to OUString in UnoControls
    
    Change-Id: I48409908bd1639d6a69217c7f94ebce04464487f
    Reviewed-on: https://gerrit.libreoffice.org/601
    Reviewed-by: Olivier Hallot <olivier.hallot at alta.org.br>
    Tested-by: Olivier Hallot <olivier.hallot at alta.org.br>

diff --git a/UnoControls/source/inc/progressmonitor.hxx b/UnoControls/source/inc/progressmonitor.hxx
index 822512a..3915b46 100644
--- a/UnoControls/source/inc/progressmonitor.hxx
+++ b/UnoControls/source/inc/progressmonitor.hxx
@@ -91,8 +91,8 @@ namespace unocontrols{
 /// Item of TextList
 struct IMPL_TextlistItem
 {
-    ::rtl::OUString sTopic  ;   /// Left site of textline in dialog
-    ::rtl::OUString sText   ;   /// Right site of textline in dialog
+    OUString sTopic  ;          /// Left site of textline in dialog
+    OUString sText   ;          /// Right site of textline in dialog
 };
 
 //____________________________________________________________________________________________________________
@@ -261,8 +261,8 @@ public:
     */
 
     virtual void SAL_CALL addText(
-        const ::rtl::OUString& sTopic ,
-        const ::rtl::OUString& sText ,
+        const OUString& sTopic ,
+        const OUString& sText ,
         sal_Bool bbeforeProgress
     ) throw( ::com::sun::star::uno::RuntimeException );
 
@@ -280,7 +280,7 @@ public:
     */
 
     virtual void SAL_CALL removeText(
-        const ::rtl::OUString& sTopic ,
+        const OUString& sTopic ,
         sal_Bool bbeforeProgress
     ) throw( ::com::sun::star::uno::RuntimeException );
 
@@ -298,8 +298,8 @@ public:
     */
 
     virtual void SAL_CALL updateText(
-        const ::rtl::OUString&  sTopic ,
-        const ::rtl::OUString&  sText ,
+        const OUString&  sTopic ,
+        const OUString&  sText ,
         sal_Bool bbeforeProgress
     ) throw( ::com::sun::star::uno::RuntimeException );
 
@@ -434,7 +434,7 @@ public:
         @onerror    -
     */
 
-    virtual void SAL_CALL setLabel( const ::rtl::OUString& sLabel ) throw( ::com::sun::star::uno::RuntimeException );
+    virtual void SAL_CALL setLabel( const OUString& sLabel ) throw( ::com::sun::star::uno::RuntimeException );
 
     /**_______________________________________________________________________________________________________
         @short      -
@@ -449,7 +449,7 @@ public:
         @onerror    -
     */
 
-    virtual void SAL_CALL setActionCommand( const ::rtl::OUString& sCommand )
+    virtual void SAL_CALL setActionCommand( const OUString& sCommand )
         throw( ::com::sun::star::uno::RuntimeException );
 
     //________________________________________________________________________________________________________
@@ -615,7 +615,7 @@ public:
         @onerror    -
     */
 
-    static const ::com::sun::star::uno::Sequence< ::rtl::OUString > impl_getStaticSupportedServiceNames();
+    static const ::com::sun::star::uno::Sequence< OUString > impl_getStaticSupportedServiceNames();
 
     /**_______________________________________________________________________________________________________
         @short      -
@@ -630,7 +630,7 @@ public:
         @onerror    -
     */
 
-    static const ::rtl::OUString impl_getStaticImplementationName();
+    static const OUString impl_getStaticImplementationName();
 
 //____________________________________________________________________________________________________________
 //  protected methods
@@ -719,7 +719,7 @@ private:
         @onerror    -
     */
 
-    IMPL_TextlistItem* impl_searchTopic( const ::rtl::OUString& sTopic , sal_Bool bbeforeProgress );
+    IMPL_TextlistItem* impl_searchTopic( const OUString& sTopic , sal_Bool bbeforeProgress );
 
 //____________________________________________________________________________________________________________
 // debug methods
@@ -742,8 +742,8 @@ private:
 
     #ifdef DBG_UTIL
 
-    sal_Bool impl_debug_checkParameter( const ::rtl::OUString& sTopic, const ::rtl::OUString& sText, sal_Bool bbeforeProgress );    // addText, updateText
-    sal_Bool impl_debug_checkParameter( const ::rtl::OUString& rTopic, sal_Bool bbeforeProgress );                              // removeText
+    sal_Bool impl_debug_checkParameter( const OUString& sTopic, const OUString& sText, sal_Bool bbeforeProgress );    // addText, updateText
+    sal_Bool impl_debug_checkParameter( const OUString& rTopic, sal_Bool bbeforeProgress );                              // removeText
 
     #endif
 //____________________________________________________________________________________________________________
diff --git a/UnoControls/source/inc/statusindicator.hxx b/UnoControls/source/inc/statusindicator.hxx
index 6850bc0..688e186 100644
--- a/UnoControls/source/inc/statusindicator.hxx
+++ b/UnoControls/source/inc/statusindicator.hxx
@@ -211,7 +211,7 @@ class StatusIndicator   : public ::com::sun::star::awt::XLayoutConstrains
         *//*-*****************************************************************************************************/
 
         virtual void SAL_CALL start(
-            const ::rtl::OUString&  sText   ,
+            const OUString&  sText   ,
             sal_Int32 nRange
         ) throw( ::com::sun::star::uno::RuntimeException );
 
@@ -258,7 +258,7 @@ class StatusIndicator   : public ::com::sun::star::awt::XLayoutConstrains
             @onerror    -
         *//*-*****************************************************************************************************/
 
-        virtual void SAL_CALL setText( const ::rtl::OUString& sText ) throw( ::com::sun::star::uno::RuntimeException );
+        virtual void SAL_CALL setText( const OUString& sText ) throw( ::com::sun::star::uno::RuntimeException );
 
         /*-****************************************************************************************************//**
             @short      -
@@ -438,7 +438,7 @@ class StatusIndicator   : public ::com::sun::star::awt::XLayoutConstrains
             @onerror    -
         */
 
-        static const ::com::sun::star::uno::Sequence< ::rtl::OUString > impl_getStaticSupportedServiceNames();
+        static const ::com::sun::star::uno::Sequence< OUString > impl_getStaticSupportedServiceNames();
 
         /**_______________________________________________________________________________________________________
             @short      -
@@ -453,7 +453,7 @@ class StatusIndicator   : public ::com::sun::star::awt::XLayoutConstrains
             @onerror    -
         */
 
-        static const ::rtl::OUString impl_getStaticImplementationName();
+        static const OUString impl_getStaticImplementationName();
 
 //____________________________________________________________________________________________________________
 //  protected methods


More information about the Libreoffice-commits mailing list