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
b4a73f9d
Kaydet (Commit)
b4a73f9d
authored
Ara 16, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bridges: Use appropriate OUString functions on string constants
Change-Id: I95ec7503ab7cf0309427118cc5af95eba4f5785b
üst
c13a1c2e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
except.cxx
bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx
+3
-3
No files found.
bridges/source/cpp_uno/gcc3_macosx_x86-64/except.cxx
Dosyayı görüntüle @
b4a73f9d
...
...
@@ -288,7 +288,7 @@ void raiseException( uno_Any * pUnoExc, uno_Mapping * pUno2Cpp )
if
(
!
pTypeDescr
)
{
throw
RuntimeException
(
OUString
(
"cannot get typedescription for type "
)
+
"cannot get typedescription for type "
+
*
reinterpret_cast
<
OUString
const
*
>
(
&
pUnoExc
->
pType
->
pTypeName
)
);
}
...
...
@@ -318,7 +318,7 @@ void raiseException( uno_Any * pUnoExc, uno_Mapping * pUno2Cpp )
if
(
!
rtti
)
{
throw
RuntimeException
(
OUString
(
"no rtti for type "
)
+
"no rtti for type "
+
*
reinterpret_cast
<
OUString
const
*
>
(
&
pUnoExc
->
pType
->
pTypeName
)
);
}
}
...
...
@@ -346,7 +346,7 @@ void fillUnoException( __cxa_exception * header, uno_Any * pUnoExc, uno_Mapping
typelib_typedescription_getByName
(
&
pExcTypeDescr
,
unoName
.
pData
);
if
(
0
==
pExcTypeDescr
)
{
RuntimeException
aRE
(
OUString
(
"exception type not found: "
)
+
unoName
);
RuntimeException
aRE
(
"exception type not found: "
+
unoName
);
Type
const
&
rType
=
::
getCppuType
(
&
aRE
);
uno_type_any_constructAndConvert
(
pUnoExc
,
&
aRE
,
rType
.
getTypeLibType
(),
pCpp2Uno
);
SAL_WARN
(
"bridges"
,
aRE
.
Message
);
...
...
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