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
80718620
Kaydet (Commit)
80718620
authored
Kas 15, 2013
tarafından
Herbert Dürr
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#i107914# IA2 build fixes in SW-module for 64bit platforms
üst
46c77dca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
accfield.hxx
sw/source/core/access/accfield.hxx
+1
-1
accpara.cxx
sw/source/core/access/accpara.cxx
+3
-3
No files found.
sw/source/core/access/accfield.hxx
Dosyayı görüntüle @
80718620
...
...
@@ -125,7 +125,7 @@ public:
//===== XAccessibleContext ==============================================
/// Return the number of currently visible children.
virtual
long
SAL_CALL
getAccessibleChildCount
(
void
)
virtual
sal_Int32
SAL_CALL
getAccessibleChildCount
(
void
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
/// Return the specified child or NULL if index is invalid.
...
...
sw/source/core/access/accpara.cxx
Dosyayı görüntüle @
80718620
...
...
@@ -2533,7 +2533,7 @@ void SwAccessibleParagraph::_correctValues( const sal_Int32 nIndex,
if
(
rValue
.
Name
.
compareTo
(
::
rtl
::
OUString
::
createFromAscii
(
GetPropName
(
UNO_NAME_CHAR_BACK_COLOR
).
pName
)
)
==
0
)
{
uno
::
Any
&
anyChar
=
rValue
.
Value
;
sal_uInt32
crBack
=
(
sal_uInt32
)(
anyChar
.
pReserved
);
sal_uInt32
crBack
=
static_cast
<
sal_uInt32
>
(
reinterpret_cast
<
sal_uIntPtr
>
(
anyChar
.
pReserved
)
);
if
(
COL_AUTO
==
crBack
)
{
uno
::
Reference
<
XAccessibleComponent
>
xComponent
(
this
);
...
...
@@ -2552,7 +2552,7 @@ void SwAccessibleParagraph::_correctValues( const sal_Int32 nIndex,
if
(
GetPortionData
().
IsInGrayPortion
(
nIndex
)
)
rValue
.
Value
<<=
SwViewOption
::
GetFieldShadingsColor
().
GetColor
();
uno
::
Any
&
anyChar
=
rValue
.
Value
;
sal_uInt32
crChar
=
(
sal_uInt32
)(
anyChar
.
pReserved
);
sal_uInt32
crChar
=
static_cast
<
sal_uInt32
>
(
reinterpret_cast
<
sal_uIntPtr
>
(
anyChar
.
pReserved
)
);
if
(
COL_AUTO
==
crChar
)
{
...
...
@@ -2609,7 +2609,7 @@ void SwAccessibleParagraph::_correctValues( const sal_Int32 nIndex,
}
uno
::
Any
&
anyChar
=
rValue
.
Value
;
sal_uInt32
crUnderline
=
(
sal_uInt32
)(
anyChar
.
pReserved
);
sal_uInt32
crUnderline
=
static_cast
<
sal_uInt32
>
(
reinterpret_cast
<
sal_uIntPtr
>
(
anyChar
.
pReserved
)
);
if
(
COL_AUTO
==
crUnderline
)
{
uno
::
Reference
<
XAccessibleComponent
>
xComponent
(
this
);
...
...
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