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
0cff0af7
Kaydet (Commit)
0cff0af7
authored
Nis 01, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: I66548ca8a8eaadea64f58653e97389c6208caa41
üst
b8f0e364
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
sax_expat.cxx
sax/source/expatwrap/sax_expat.cxx
+1
-1
fastparser.cxx
sax/source/fastparser/fastparser.cxx
+1
-1
testsax.cxx
sax/test/sax/testsax.cxx
+2
-2
No files found.
sax/source/expatwrap/sax_expat.cxx
Dosyayı görüntüle @
0cff0af7
...
...
@@ -739,7 +739,7 @@ void SaxExpatParser_Impl::parse( )
SAXParseException
aExcept
(
getErrorMessage
(
xmlE
,
sSystemId
,
nLine
)
,
css
::
uno
::
Reference
<
css
::
uno
::
XInterface
>
(),
css
::
uno
::
Any
(
&
exception
,
getCppuType
(
&
exception
)
),
css
::
uno
::
Any
(
&
exception
,
cppu
::
UnoType
<
decltype
(
exception
)
>::
get
(
)
),
rDocumentLocator
->
getPublicId
(),
rDocumentLocator
->
getSystemId
(),
rDocumentLocator
->
getLineNumber
(),
...
...
sax/source/fastparser/fastparser.cxx
Dosyayı görüntüle @
0cff0af7
...
...
@@ -567,7 +567,7 @@ void Entity::throwException( const ::rtl::Reference< FastLocatorImpl > &xDocumen
xDocumentLocator
->
getSystemId
(),
xDocumentLocator
->
getLineNumber
()
),
Reference
<
XInterface
>
(),
Any
(
&
maSavedException
,
getCppuType
(
&
maSavedException
)
),
Any
(
&
maSavedException
,
cppu
::
UnoType
<
decltype
(
maSavedException
)
>::
get
(
)
),
xDocumentLocator
->
getPublicId
(),
xDocumentLocator
->
getSystemId
(),
xDocumentLocator
->
getLineNumber
(),
...
...
sax/test/sax/testsax.cxx
Dosyayı görüntüle @
0cff0af7
...
...
@@ -630,7 +630,7 @@ void OSaxParserTest::testFile( const Reference < XParser > & rParser )
while
(
true
)
{
SAXParseException
*
pEx
;
if
(
any
.
getValueType
()
==
getCppuType
(
&
e
)
)
{
if
(
any
.
getValueType
()
==
cppu
::
UnoType
<
decltype
(
e
)
>::
get
(
)
)
{
pEx
=
(
SAXParseException
*
)
any
.
getValue
();
OString
o1
=
OUStringToOString
(
pEx
->
Message
,
RTL_TEXTENCODING_UTF8
);
printf
(
"%s
\n
"
,
o1
.
getStr
()
);
...
...
@@ -695,7 +695,7 @@ void OSaxParserTest::testPerformance( const Reference < XParser > & rParser )
Any
any
;
any
<<=
e
;
while
(
true
)
{
if
(
any
.
getValueType
()
==
getCppuType
(
&
e
)
)
{
if
(
any
.
getValueType
()
==
cppu
::
UnoType
<
decltype
(
e
)
>::
get
(
)
)
{
SAXParseException
ex
;
any
>>=
ex
;
OString
o
=
OUStringToOString
(
ex
.
Message
,
RTL_TEXTENCODING_ASCII_US
);
...
...
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