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
40aaefeb
Kaydet (Commit)
40aaefeb
authored
Nis 14, 2012
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
put the missing type into the exception message
üst
0ff30829
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
unmarshal.cxx
binaryurp/source/unmarshal.cxx
+4
-2
No files found.
binaryurp/source/unmarshal.cxx
Dosyayı görüntüle @
40aaefeb
...
@@ -182,15 +182,17 @@ css::uno::TypeDescription Unmarshal::readType() {
...
@@ -182,15 +182,17 @@ css::uno::TypeDescription Unmarshal::readType() {
}
}
return
state_
.
typeCache
[
idx
];
return
state_
.
typeCache
[
idx
];
}
else
{
}
else
{
css
::
uno
::
TypeDescription
t
(
readString
());
rtl
::
OUString
const
str
(
readString
());
css
::
uno
::
TypeDescription
t
(
str
);
if
(
!
t
.
is
()
||
if
(
!
t
.
is
()
||
t
.
get
()
->
eTypeClass
!=
static_cast
<
typelib_TypeClass
>
(
tc
))
t
.
get
()
->
eTypeClass
!=
static_cast
<
typelib_TypeClass
>
(
tc
))
{
{
throw
css
::
io
::
IOException
(
throw
css
::
io
::
IOException
(
rtl
::
OUString
(
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
RTL_CONSTASCII_USTRINGPARAM
(
"binaryurp::Unmarshal: type with unknown"
"binaryurp::Unmarshal: type with unknown"
" name
"
))
,
" name
: "
))
+
str
,
css
::
uno
::
Reference
<
css
::
uno
::
XInterface
>
());
css
::
uno
::
Reference
<
css
::
uno
::
XInterface
>
());
}
}
for
(
css
::
uno
::
TypeDescription
t2
(
t
);
for
(
css
::
uno
::
TypeDescription
t2
(
t
);
...
...
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