Kaydet (Commit) aa4a6bd8 authored tarafından Ricardo Montania's avatar Ricardo Montania Kaydeden (comit) Olivier Hallot

::rtl::OUString to OUString in UnoControls

Change-Id: I12a95e61e7bf59c64fec7df98617926b774074ee
Reviewed-on: https://gerrit.libreoffice.org/597Reviewed-by: 's avatarOlivier Hallot <olivier.hallot@alta.org.br>
Tested-by: 's avatarOlivier Hallot <olivier.hallot@alta.org.br>
üst 4ed62ddb
...@@ -47,7 +47,7 @@ namespace unocontrols{ ...@@ -47,7 +47,7 @@ namespace unocontrols{
struct IMPL_ControlInfo struct IMPL_ControlInfo
{ {
::com::sun::star::uno::Reference< ::com::sun::star::awt::XControl > xControl ; ::com::sun::star::uno::Reference< ::com::sun::star::awt::XControl > xControl ;
::rtl::OUString sName ; OUString sName ;
}; };
class BaseContainerControl : public ::com::sun::star::awt::XControlModel class BaseContainerControl : public ::com::sun::star::awt::XControlModel
...@@ -268,7 +268,7 @@ public: ...@@ -268,7 +268,7 @@ public:
*/ */
virtual void SAL_CALL addControl( virtual void SAL_CALL addControl(
const ::rtl::OUString& sName , const OUString& sName ,
const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XControl >& xControl const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XControl >& xControl
) throw( ::com::sun::star::uno::RuntimeException ); ) throw( ::com::sun::star::uno::RuntimeException );
...@@ -337,7 +337,7 @@ public: ...@@ -337,7 +337,7 @@ public:
*/ */
virtual void SAL_CALL setStatusText( virtual void SAL_CALL setStatusText(
const ::rtl::OUString& sStatusText const OUString& sStatusText
) throw( ::com::sun::star::uno::RuntimeException ); ) throw( ::com::sun::star::uno::RuntimeException );
/**_______________________________________________________________________________________________________ /**_______________________________________________________________________________________________________
...@@ -354,7 +354,7 @@ public: ...@@ -354,7 +354,7 @@ public:
*/ */
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XControl > SAL_CALL getControl( 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 ); ) throw( ::com::sun::star::uno::RuntimeException );
/**_______________________________________________________________________________________________________ /**_______________________________________________________________________________________________________
......
...@@ -307,7 +307,7 @@ public: ...@@ -307,7 +307,7 @@ public:
*/ */
virtual sal_Bool SAL_CALL supportsService( virtual sal_Bool SAL_CALL supportsService(
const ::rtl::OUString& sServiceName const OUString& sServiceName
) throw( ::com::sun::star::uno::RuntimeException ); ) throw( ::com::sun::star::uno::RuntimeException );
/**_______________________________________________________________________________________________________ /**_______________________________________________________________________________________________________
...@@ -323,7 +323,7 @@ public: ...@@ -323,7 +323,7 @@ public:
@onerror - @onerror -
*/ */
virtual ::rtl::OUString SAL_CALL getImplementationName() virtual OUString SAL_CALL getImplementationName()
throw( ::com::sun::star::uno::RuntimeException ); throw( ::com::sun::star::uno::RuntimeException );
/**_______________________________________________________________________________________________________ /**_______________________________________________________________________________________________________
...@@ -339,7 +339,7 @@ public: ...@@ -339,7 +339,7 @@ public:
@onerror - @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 ); throw( ::com::sun::star::uno::RuntimeException );
//________________________________________________________________________________________________________ //________________________________________________________________________________________________________
...@@ -1012,7 +1012,7 @@ public: ...@@ -1012,7 +1012,7 @@ public:
@onerror - @onerror -
*/ */
static const ::com::sun::star::uno::Sequence< ::rtl::OUString > impl_getStaticSupportedServiceNames(); static const ::com::sun::star::uno::Sequence< OUString > impl_getStaticSupportedServiceNames();
/**_______________________________________________________________________________________________________ /**_______________________________________________________________________________________________________
@short - @short -
...@@ -1027,7 +1027,7 @@ public: ...@@ -1027,7 +1027,7 @@ public:
@onerror - @onerror -
*/ */
static const ::rtl::OUString impl_getStaticImplementationName(); static const OUString impl_getStaticImplementationName();
//____________________________________________________________________________________________________________ //____________________________________________________________________________________________________________
// protected methods // protected methods
......
...@@ -396,7 +396,7 @@ public: ...@@ -396,7 +396,7 @@ public:
@onerror @onerror
*/ */
static const ::com::sun::star::uno::Sequence< ::rtl::OUString > impl_getStaticSupportedServiceNames(); static const ::com::sun::star::uno::Sequence< OUString > impl_getStaticSupportedServiceNames();
/**_________________________________________________________________________________________________________ /**_________________________________________________________________________________________________________
@short @short
...@@ -411,7 +411,7 @@ public: ...@@ -411,7 +411,7 @@ public:
@onerror @onerror
*/ */
static const ::rtl::OUString impl_getStaticImplementationName(); static const OUString impl_getStaticImplementationName();
//______________________________________________________________________________________________________________ //______________________________________________________________________________________________________________
// protected methods // protected methods
...@@ -553,7 +553,7 @@ private: ...@@ -553,7 +553,7 @@ private:
*/ */
void impl_createFrame( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer >& xPeer , 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 ); const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& seqArguments );
/**_________________________________________________________________________________________________________ /**_________________________________________________________________________________________________________
...@@ -594,7 +594,7 @@ private: ...@@ -594,7 +594,7 @@ private:
private: private:
::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > m_xFrame ; ::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 ; ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > m_seqLoaderArguments ;
::cppu::OMultiTypeInterfaceContainerHelper m_aInterfaceContainer ; ::cppu::OMultiTypeInterfaceContainerHelper m_aInterfaceContainer ;
OConnectionPointContainerHelper m_aConnectionPointContainer ; OConnectionPointContainerHelper m_aConnectionPointContainer ;
......
...@@ -345,7 +345,7 @@ public: ...@@ -345,7 +345,7 @@ public:
@onerror @onerror
*/ */
static const ::com::sun::star::uno::Sequence< ::rtl::OUString > impl_getStaticSupportedServiceNames(); static const ::com::sun::star::uno::Sequence< OUString > impl_getStaticSupportedServiceNames();
/**_________________________________________________________________________________________________________ /**_________________________________________________________________________________________________________
@short @short
...@@ -360,7 +360,7 @@ public: ...@@ -360,7 +360,7 @@ public:
@onerror @onerror
*/ */
static const ::rtl::OUString impl_getStaticImplementationName(); static const OUString impl_getStaticImplementationName();
//____________________________________________________________________________________________________________ //____________________________________________________________________________________________________________
// protected methods // protected methods
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment