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
5a043b09
Kaydet (Commit)
5a043b09
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: Ie45abb59a982bc13b65eacf8061f8843e224cfd5
üst
23116414
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
basecontainer.cxx
filter/source/config/cache/basecontainer.cxx
+1
-1
escherex.cxx
filter/source/msfilter/escherex.cxx
+3
-3
No files found.
filter/source/config/cache/basecontainer.cxx
Dosyayı görüntüle @
5a043b09
...
@@ -384,7 +384,7 @@ css::uno::Type SAL_CALL BaseContainer::getElementType()
...
@@ -384,7 +384,7 @@ css::uno::Type SAL_CALL BaseContainer::getElementType()
{
{
// no lock necessary - because the type of our items
// no lock necessary - because the type of our items
// is fix! no internal call or member needed ...
// is fix! no internal call or member needed ...
return
::
getCppuType
(
static_cast
<
css
::
uno
::
Sequence
<
css
::
beans
::
PropertyValue
>*
>
(
NULL
)
);
return
cppu
::
UnoType
<
css
::
uno
::
Sequence
<
css
::
beans
::
PropertyValue
>>::
get
(
);
}
}
...
...
filter/source/msfilter/escherex.cxx
Dosyayı görüntüle @
5a043b09
...
@@ -1854,7 +1854,7 @@ tools::PolyPolygon EscherPropertyContainer::GetPolyPolygon( const ::com::sun::st
...
@@ -1854,7 +1854,7 @@ tools::PolyPolygon EscherPropertyContainer::GetPolyPolygon( const ::com::sun::st
}
}
}
}
}
}
else
if
(
rAny
.
getValueType
()
==
::
getCppuType
(
(
const
::
com
::
sun
::
star
::
drawing
::
PointSequenceSequence
*
)
0
)
)
else
if
(
rAny
.
getValueType
()
==
cppu
::
UnoType
<
css
::
drawing
::
PointSequenceSequence
>::
get
(
)
)
{
{
::
com
::
sun
::
star
::
drawing
::
PointSequenceSequence
const
*
pSourcePolyPolygon
::
com
::
sun
::
star
::
drawing
::
PointSequenceSequence
const
*
pSourcePolyPolygon
=
static_cast
<
css
::
drawing
::
PointSequenceSequence
const
*>
(
rAny
.
getValue
());
=
static_cast
<
css
::
drawing
::
PointSequenceSequence
const
*>
(
rAny
.
getValue
());
...
@@ -1892,7 +1892,7 @@ tools::PolyPolygon EscherPropertyContainer::GetPolyPolygon( const ::com::sun::st
...
@@ -1892,7 +1892,7 @@ tools::PolyPolygon EscherPropertyContainer::GetPolyPolygon( const ::com::sun::st
}
}
}
}
}
}
else
if
(
rAny
.
getValueType
()
==
::
getCppuType
(
(
const
::
com
::
sun
::
star
::
drawing
::
PointSequence
*
)
0
)
)
else
if
(
rAny
.
getValueType
()
==
cppu
::
UnoType
<
css
::
drawing
::
PointSequence
>::
get
(
)
)
{
{
::
com
::
sun
::
star
::
drawing
::
PointSequence
const
*
pInnerSequence
=
::
com
::
sun
::
star
::
drawing
::
PointSequence
const
*
pInnerSequence
=
static_cast
<
css
::
drawing
::
PointSequence
const
*>
(
rAny
.
getValue
());
static_cast
<
css
::
drawing
::
PointSequence
const
*>
(
rAny
.
getValue
());
...
@@ -1917,7 +1917,7 @@ tools::PolyPolygon EscherPropertyContainer::GetPolyPolygon( const ::com::sun::st
...
@@ -1917,7 +1917,7 @@ tools::PolyPolygon EscherPropertyContainer::GetPolyPolygon( const ::com::sun::st
}
}
}
}
}
}
else
if
(
rAny
.
getValueType
()
==
::
getCppuType
(
(
const
uno
::
Sequence
<
beans
::
PropertyValue
>*
)
0
)
)
else
if
(
rAny
.
getValueType
()
==
cppu
::
UnoType
<
uno
::
Sequence
<
beans
::
PropertyValue
>>::
get
(
)
)
{
{
uno
::
Sequence
<
beans
::
PropertyValue
>
const
*
pGeometrySeq
=
uno
::
Sequence
<
beans
::
PropertyValue
>
const
*
pGeometrySeq
=
static_cast
<
uno
::
Sequence
<
beans
::
PropertyValue
>
const
*>
(
rAny
.
getValue
());
static_cast
<
uno
::
Sequence
<
beans
::
PropertyValue
>
const
*>
(
rAny
.
getValue
());
...
...
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