Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
a11c6817
Kaydet (Commit)
a11c6817
authored
Ara 16, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
testtools: Use appropriate OUString functions on string constants
Change-Id: Iacc67a087321e9cf0f699f4eecb334eb7372b885
üst
bc909149
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
constructors.cxx
testtools/source/bridgetest/constructors.cxx
+1
-1
multi.hxx
testtools/source/bridgetest/multi.hxx
+5
-5
No files found.
testtools/source/bridgetest/constructors.cxx
Dosyayı görüntüle @
a11c6817
...
@@ -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
(
...
...
testtools/source/bridgetest/multi.hxx
Dosyayı görüntüle @
a11c6817
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment