[Libreoffice-commits] .: UnoControls/inc UnoControls/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Tue Sep 11 11:21:19 PDT 2012
UnoControls/inc/basecontainercontrol.hxx | 8 ++++----
UnoControls/inc/basecontrol.hxx | 10 +++++-----
UnoControls/source/inc/framecontrol.hxx | 8 ++++----
UnoControls/source/inc/progressbar.hxx | 4 ++--
4 files changed, 15 insertions(+), 15 deletions(-)
New commits:
commit aa4a6bd8c199f8462a9120d4a1a2ac983c9d4d5d
Author: Ricardo Montania <ricardo at linuxafundo.com.br>
Date: Tue Sep 11 12:58:00 2012 -0300
::rtl::OUString to OUString in UnoControls
Change-Id: I12a95e61e7bf59c64fec7df98617926b774074ee
Reviewed-on: https://gerrit.libreoffice.org/597
Reviewed-by: Olivier Hallot <olivier.hallot at alta.org.br>
Tested-by: Olivier Hallot <olivier.hallot at alta.org.br>
diff --git a/UnoControls/inc/basecontainercontrol.hxx b/UnoControls/inc/basecontainercontrol.hxx
index 18c5169..857a8d7 100644
--- a/UnoControls/inc/basecontainercontrol.hxx
+++ b/UnoControls/inc/basecontainercontrol.hxx
@@ -47,7 +47,7 @@ namespace unocontrols{
struct IMPL_ControlInfo
{
::com::sun::star::uno::Reference< ::com::sun::star::awt::XControl > xControl ;
- ::rtl::OUString sName ;
+ OUString sName ;
};
class BaseContainerControl : public ::com::sun::star::awt::XControlModel
@@ -268,7 +268,7 @@ public:
*/
virtual void SAL_CALL addControl(
- const ::rtl::OUString& sName ,
+ const OUString& sName ,
const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XControl >& xControl
) throw( ::com::sun::star::uno::RuntimeException );
@@ -337,7 +337,7 @@ public:
*/
virtual void SAL_CALL setStatusText(
- const ::rtl::OUString& sStatusText
+ const OUString& sStatusText
) throw( ::com::sun::star::uno::RuntimeException );
/**_______________________________________________________________________________________________________
@@ -354,7 +354,7 @@ public:
*/
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XControl > SAL_CALL getControl(
- const ::rtl::OUString& sName
+ const OUString& sName
) throw( ::com::sun::star::uno::RuntimeException );
/**_______________________________________________________________________________________________________
diff --git a/UnoControls/inc/basecontrol.hxx b/UnoControls/inc/basecontrol.hxx
index 68d90e2..f54033e 100644
--- a/UnoControls/inc/basecontrol.hxx
+++ b/UnoControls/inc/basecontrol.hxx
@@ -307,7 +307,7 @@ public:
*/
virtual sal_Bool SAL_CALL supportsService(
- const ::rtl::OUString& sServiceName
+ const OUString& sServiceName
) throw( ::com::sun::star::uno::RuntimeException );
/**_______________________________________________________________________________________________________
@@ -323,7 +323,7 @@ public:
@onerror -
*/
- virtual ::rtl::OUString SAL_CALL getImplementationName()
+ virtual OUString SAL_CALL getImplementationName()
throw( ::com::sun::star::uno::RuntimeException );
/**_______________________________________________________________________________________________________
@@ -339,7 +339,7 @@ public:
@onerror -
*/
- virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames()
+ virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
throw( ::com::sun::star::uno::RuntimeException );
//________________________________________________________________________________________________________
@@ -1012,7 +1012,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 -
@@ -1027,7 +1027,7 @@ public:
@onerror -
*/
- static const ::rtl::OUString impl_getStaticImplementationName();
+ static const OUString impl_getStaticImplementationName();
//____________________________________________________________________________________________________________
// protected methods
diff --git a/UnoControls/source/inc/framecontrol.hxx b/UnoControls/source/inc/framecontrol.hxx
index a729de6..7f4340c 100644
--- a/UnoControls/source/inc/framecontrol.hxx
+++ b/UnoControls/source/inc/framecontrol.hxx
@@ -396,7 +396,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
@@ -411,7 +411,7 @@ public:
@onerror
*/
- static const ::rtl::OUString impl_getStaticImplementationName();
+ static const OUString impl_getStaticImplementationName();
//______________________________________________________________________________________________________________
// protected methods
@@ -553,7 +553,7 @@ private:
*/
void impl_createFrame( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer >& xPeer ,
- const ::rtl::OUString& sURL ,
+ const OUString& sURL ,
const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& seqArguments );
/**_________________________________________________________________________________________________________
@@ -594,7 +594,7 @@ private:
private:
::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > m_xFrame ;
- ::rtl::OUString m_sComponentURL ;
+ OUString m_sComponentURL ;
::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > m_seqLoaderArguments ;
::cppu::OMultiTypeInterfaceContainerHelper m_aInterfaceContainer ;
OConnectionPointContainerHelper m_aConnectionPointContainer ;
diff --git a/UnoControls/source/inc/progressbar.hxx b/UnoControls/source/inc/progressbar.hxx
index 7bd2d6f..8fb3d8b 100644
--- a/UnoControls/source/inc/progressbar.hxx
+++ b/UnoControls/source/inc/progressbar.hxx
@@ -345,7 +345,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
@@ -360,7 +360,7 @@ public:
@onerror
*/
- static const ::rtl::OUString impl_getStaticImplementationName();
+ static const OUString impl_getStaticImplementationName();
//____________________________________________________________________________________________________________
// protected methods
More information about the Libreoffice-commits
mailing list