diff options
author | Ricardo Montania <ricardo@linuxafundo.com.br> | 2012-09-11 12:58:00 -0300 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-09-11 18:21:00 +0000 |
commit | aa4a6bd8c199f8462a9120d4a1a2ac983c9d4d5d (patch) | |
tree | 20cebb0e281dc3396169818ea1f30e6cf5ce64d8 /UnoControls/inc/basecontainercontrol.hxx | |
parent | 4ed62ddb01e4ecff9de01246ea4c040f007c1196 (diff) |
::rtl::OUString to OUString in UnoControls
Change-Id: I12a95e61e7bf59c64fec7df98617926b774074ee
Reviewed-on: https://gerrit.libreoffice.org/597
Reviewed-by: Olivier Hallot <olivier.hallot@alta.org.br>
Tested-by: Olivier Hallot <olivier.hallot@alta.org.br>
Diffstat (limited to 'UnoControls/inc/basecontainercontrol.hxx')
-rw-r--r-- | UnoControls/inc/basecontainercontrol.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/UnoControls/inc/basecontainercontrol.hxx b/UnoControls/inc/basecontainercontrol.hxx index 18c51694009e..857a8d7c50a2 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 ); /**_______________________________________________________________________________________________________ |