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
915dc38b
Kaydet (Commit)
915dc38b
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: I718cbc10c992b0515d3c4e2a62e38a6331a288d0
üst
6dbcb1a3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
AccEditableText.cxx
winaccessibility/source/UAccCOM/AccEditableText.cxx
+1
-1
MAccessible.cxx
winaccessibility/source/UAccCOM/MAccessible.cxx
+2
-2
AccObject.cxx
winaccessibility/source/service/AccObject.cxx
+1
-1
No files found.
winaccessibility/source/UAccCOM/AccEditableText.cxx
Dosyayı görüntüle @
915dc38b
...
...
@@ -417,7 +417,7 @@ void CAccEditableText::get_AnyFromOLECHAR(const ::rtl::OUString &ouName, const :
}
// Assign to Any object.
rAny
.
setValue
(
&
seqTabStop
,
getCppuType
((
Sequence
<
::
com
::
sun
::
star
::
style
::
TabStop
>*
)
0
));
rAny
.
setValue
(
&
seqTabStop
,
cppu
::
UnoType
<
Sequence
<
::
com
::
sun
::
star
::
style
::
TabStop
>>::
get
(
));
}
else
if
(
ouName
.
equals
(
L"ParaLineSpacing"
)
)
{
...
...
winaccessibility/source/UAccCOM/MAccessible.cxx
Dosyayı görüntüle @
915dc38b
...
...
@@ -2805,7 +2805,7 @@ void CMAccessible::get_OLECHARFromAny(Any& pAny, OLECHAR* pChar)
}
case
TypeClass_SEQUENCE
:
{
if
(
pAny
.
getValueType
()
==
getCppuType
(
(
Sequence
<
::
rtl
::
OUString
>
*
)
0
)
)
if
(
pAny
.
getValueType
()
==
cppu
::
UnoType
<
Sequence
<
::
rtl
::
OUString
>>::
get
()
)
{
Sequence
<
::
rtl
::
OUString
>
val
;
pAny
>>=
val
;
...
...
@@ -2820,7 +2820,7 @@ void CMAccessible::get_OLECHARFromAny(Any& pAny, OLECHAR* pChar)
}
wcscpy
(
pChar
,
pString
.
getStr
());
}
else
if
(
pAny
.
getValueType
()
==
getCppuType
(
(
Sequence
<
::
com
::
sun
::
star
::
style
::
TabStop
>*
)
0
)
)
else
if
(
pAny
.
getValueType
()
==
cppu
::
UnoType
<
Sequence
<
::
com
::
sun
::
star
::
style
::
TabStop
>>::
get
()
)
{
Sequence
<
::
com
::
sun
::
star
::
style
::
TabStop
>
val
;
pAny
>>=
val
;
...
...
winaccessibility/source/service/AccObject.cxx
Dosyayı görüntüle @
915dc38b
...
...
@@ -440,7 +440,7 @@ void AccObject::SetValue( Any pAny )
pAny
>>=
strValue
;
}
else
if
(
pAny
.
getValueType
()
==
getCppuType
(
(
Sequence
<
::
rtl
::
OUString
>
*
)
0
)
)
else
if
(
pAny
.
getValueType
()
==
cppu
::
UnoType
<
Sequence
<
::
rtl
::
OUString
>>::
get
()
)
{
Sequence
<
::
rtl
::
OUString
>
val
;
if
(
pAny
>>=
val
)
...
...
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