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
0d0b7947
Kaydet (Commit)
0d0b7947
authored
Nis 23, 2012
tarafından
Tor Lillqvist
Kaydeden (comit)
Tor Lillqvist
Nis 24, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
WaE: implicit conversion changes signedness
üst
51c0a44e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
Any.hxx
cppu/inc/com/sun/star/uno/Any.hxx
+6
-6
No files found.
cppu/inc/com/sun/star/uno/Any.hxx
Dosyayı görüntüle @
0d0b7947
...
...
@@ -306,7 +306,7 @@ inline sal_Bool SAL_CALL operator >>= ( const Any & rAny, sal_uInt16 & value ) S
switch
(
rAny
.
pType
->
eTypeClass
)
{
case
typelib_TypeClass_BYTE
:
value
=
*
reinterpret_cast
<
const
sal_Int8
*
>
(
rAny
.
pData
);
value
=
(
sal_uInt16
)(
*
reinterpret_cast
<
const
sal_Int8
*
>
(
rAny
.
pData
)
);
return
sal_True
;
case
typelib_TypeClass_SHORT
:
case
typelib_TypeClass_UNSIGNED_SHORT
:
...
...
@@ -345,10 +345,10 @@ inline sal_Bool SAL_CALL operator >>= ( const Any & rAny, sal_uInt32 & value ) S
switch
(
rAny
.
pType
->
eTypeClass
)
{
case
typelib_TypeClass_BYTE
:
value
=
*
reinterpret_cast
<
const
sal_Int8
*
>
(
rAny
.
pData
);
value
=
(
sal_uInt32
)(
*
reinterpret_cast
<
const
sal_Int8
*
>
(
rAny
.
pData
)
);
return
sal_True
;
case
typelib_TypeClass_SHORT
:
value
=
*
reinterpret_cast
<
const
sal_Int16
*
>
(
rAny
.
pData
);
value
=
(
sal_uInt32
)(
*
reinterpret_cast
<
const
sal_Int16
*
>
(
rAny
.
pData
)
);
return
sal_True
;
case
typelib_TypeClass_UNSIGNED_SHORT
:
value
=
*
reinterpret_cast
<
const
sal_uInt16
*
>
(
rAny
.
pData
);
...
...
@@ -396,16 +396,16 @@ inline sal_Bool SAL_CALL operator >>= ( const Any & rAny, sal_uInt64 & value ) S
switch
(
rAny
.
pType
->
eTypeClass
)
{
case
typelib_TypeClass_BYTE
:
value
=
*
reinterpret_cast
<
const
sal_Int8
*
>
(
rAny
.
pData
);
value
=
(
sal_uInt64
)(
*
reinterpret_cast
<
const
sal_Int8
*
>
(
rAny
.
pData
)
);
return
sal_True
;
case
typelib_TypeClass_SHORT
:
value
=
*
reinterpret_cast
<
const
sal_Int16
*
>
(
rAny
.
pData
);
value
=
(
sal_uInt64
)(
*
reinterpret_cast
<
const
sal_Int16
*
>
(
rAny
.
pData
)
);
return
sal_True
;
case
typelib_TypeClass_UNSIGNED_SHORT
:
value
=
*
reinterpret_cast
<
const
sal_uInt16
*
>
(
rAny
.
pData
);
return
sal_True
;
case
typelib_TypeClass_LONG
:
value
=
*
reinterpret_cast
<
const
sal_Int32
*
>
(
rAny
.
pData
);
value
=
(
sal_uInt64
)(
*
reinterpret_cast
<
const
sal_Int32
*
>
(
rAny
.
pData
)
);
return
sal_True
;
case
typelib_TypeClass_UNSIGNED_LONG
:
value
=
*
reinterpret_cast
<
const
sal_uInt32
*
>
(
rAny
.
pData
);
...
...
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