Kaydet (Commit) a11c6817 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

testtools: Use appropriate OUString functions on string constants

Change-Id: Iacc67a087321e9cf0f699f4eecb334eb7372b885
üst bc909149
...@@ -431,7 +431,7 @@ void Impl2::setatt1( double _att1 )throw (::com::sun::star::uno::RuntimeExceptio ...@@ -431,7 +431,7 @@ void Impl2::setatt1( double _att1 )throw (::com::sun::star::uno::RuntimeExceptio
OUString Impl2::fn12( const OUString& arg ) OUString Impl2::fn12( const OUString& arg )
throw (::com::sun::star::uno::RuntimeException, std::exception) throw (::com::sun::star::uno::RuntimeException, std::exception)
{ {
return OUString("12") + arg; return "12" + arg;
} }
css::uno::Reference< css::uno::XInterface > SAL_CALL create( css::uno::Reference< css::uno::XInterface > SAL_CALL create(
......
...@@ -50,7 +50,7 @@ public: ...@@ -50,7 +50,7 @@ public:
virtual OUString SAL_CALL fn12(OUString const & arg) virtual OUString SAL_CALL fn12(OUString const & arg)
throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return OUString("12") + arg; } { return "12" + arg; }
virtual sal_Int32 SAL_CALL fn21(sal_Int32 arg) virtual sal_Int32 SAL_CALL fn21(sal_Int32 arg)
throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
...@@ -58,7 +58,7 @@ public: ...@@ -58,7 +58,7 @@ public:
virtual OUString SAL_CALL fn22(OUString const & arg) virtual OUString SAL_CALL fn22(OUString const & arg)
throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return OUString("22") + arg; } { return "22" + arg; }
virtual double SAL_CALL getatt3() virtual double SAL_CALL getatt3()
throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
...@@ -74,7 +74,7 @@ public: ...@@ -74,7 +74,7 @@ public:
virtual OUString SAL_CALL fn32(OUString const & arg) virtual OUString SAL_CALL fn32(OUString const & arg)
throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return OUString("32") + arg; } { return "32" + arg; }
virtual sal_Int32 SAL_CALL fn33() virtual sal_Int32 SAL_CALL fn33()
throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
...@@ -90,7 +90,7 @@ public: ...@@ -90,7 +90,7 @@ public:
virtual OUString SAL_CALL fn62(OUString const & arg) virtual OUString SAL_CALL fn62(OUString const & arg)
throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return OUString("62") + arg; } { return "62" + arg; }
virtual sal_Int32 SAL_CALL fn71(sal_Int32 arg) virtual sal_Int32 SAL_CALL fn71(sal_Int32 arg)
throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
...@@ -98,7 +98,7 @@ public: ...@@ -98,7 +98,7 @@ public:
virtual OUString SAL_CALL fn72(OUString const & arg) virtual OUString SAL_CALL fn72(OUString const & arg)
throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return OUString("72") + arg; } { return "72" + arg; }
virtual sal_Int32 SAL_CALL fn73() virtual sal_Int32 SAL_CALL fn73()
throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
......
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