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
6231a9b4
Kaydet (Commit)
6231a9b4
authored
Eki 21, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
visual studio version 4 is long gone
Change-Id: Icf0b4153d07d9c412889d6a7364d4282bba33032
üst
115fa590
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
15 deletions
+6
-15
proptypehlp.hxx
include/cppuhelper/proptypehlp.hxx
+6
-15
No files found.
include/cppuhelper/proptypehlp.hxx
Dosyayı görüntüle @
6231a9b4
...
...
@@ -43,13 +43,6 @@ inline void SAL_CALL convertPropertyValue( target &value , const css::uno::Any
}
// This template is needed at least for msci4 compiler
template
<
class
target
>
inline
void
SAL_CALL
convertPropertyValue
(
target
&
value
,
css
::
uno
::
Any
&
a
)
{
convertPropertyValue
(
value
,
(
const
css
::
uno
::
Any
&
)
a
);
}
/**
conversion of basic types
*/
...
...
@@ -384,13 +377,12 @@ inline void SAL_CALL convertPropertyValue( float &f , const css::uno::Any &a )
a
>>=
i64
;
f
=
(
float
)
i64
;
}
// msci 4 does not support this conversion
/* else if( css::uno::TypeClass_UNSIGNED_HYPER == tc ) {
sal_uInt64 i64;
else
if
(
css
::
uno
::
TypeClass_UNSIGNED_HYPER
==
tc
)
{
sal_uInt64
i64
=
0
;
a
>>=
i64
;
f
=
(
float
)
i64
;
}
*/
else
if
(
css
::
uno
::
TypeClass_LONG
==
tc
)
{
else
if
(
css
::
uno
::
TypeClass_LONG
==
tc
)
{
sal_Int32
i32
=
0
;
a
>>=
i32
;
f
=
(
float
)
i32
;
...
...
@@ -450,13 +442,12 @@ inline void SAL_CALL convertPropertyValue( double &d , const css::uno::Any &a )
a
>>=
i64
;
d
=
(
double
)
i64
;
}
// msci 4 does not support this
/* else if( css::uno::TypeClass_UNSIGNED_HYPER == tc ) {
sal_uInt64 i64;
else
if
(
css
::
uno
::
TypeClass_UNSIGNED_HYPER
==
tc
)
{
sal_uInt64
i64
=
0
;
a
>>=
i64
;
d
=
(
double
)
i64
;
}
*/
else
if
(
css
::
uno
::
TypeClass_LONG
==
tc
)
{
else
if
(
css
::
uno
::
TypeClass_LONG
==
tc
)
{
sal_Int32
i32
;
a
>>=
i32
;
d
=
(
double
)
i32
;
...
...
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