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
c95ff75d
Kaydet (Commit)
c95ff75d
authored
Tem 02, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
comphelper: sal_Bool -> bool
Change-Id: Icde90101b6adfa766c8abbeb55c518725e6596e1
üst
0e8d69fa
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
accessibleselectionhelper.cxx
comphelper/source/misc/accessibleselectionhelper.cxx
+4
-4
accimplaccess.cxx
comphelper/source/misc/accimplaccess.cxx
+1
-1
accessibleselectionhelper.hxx
include/comphelper/accessibleselectionhelper.hxx
+1
-1
accimplaccess.hxx
include/comphelper/accimplaccess.hxx
+1
-1
No files found.
comphelper/source/misc/accessibleselectionhelper.cxx
Dosyayı görüntüle @
c95ff75d
...
...
@@ -42,7 +42,7 @@ namespace comphelper
void
SAL_CALL
OCommonAccessibleSelection
::
selectAccessibleChild
(
sal_Int32
nChildIndex
)
throw
(
IndexOutOfBoundsException
,
RuntimeException
)
{
implSelect
(
nChildIndex
,
sal_T
rue
);
implSelect
(
nChildIndex
,
t
rue
);
}
...
...
@@ -54,13 +54,13 @@ namespace comphelper
void
SAL_CALL
OCommonAccessibleSelection
::
clearAccessibleSelection
(
)
throw
(
RuntimeException
)
{
implSelect
(
ACCESSIBLE_SELECTION_CHILD_ALL
,
sal_F
alse
);
implSelect
(
ACCESSIBLE_SELECTION_CHILD_ALL
,
f
alse
);
}
void
SAL_CALL
OCommonAccessibleSelection
::
selectAllAccessibleChildren
(
)
throw
(
RuntimeException
)
{
implSelect
(
ACCESSIBLE_SELECTION_CHILD_ALL
,
sal_T
rue
);
implSelect
(
ACCESSIBLE_SELECTION_CHILD_ALL
,
t
rue
);
}
...
...
@@ -102,7 +102,7 @@ namespace comphelper
void
SAL_CALL
OCommonAccessibleSelection
::
deselectAccessibleChild
(
sal_Int32
nSelectedChildIndex
)
throw
(
IndexOutOfBoundsException
,
RuntimeException
)
{
implSelect
(
nSelectedChildIndex
,
sal_F
alse
);
implSelect
(
nSelectedChildIndex
,
f
alse
);
}
...
...
comphelper/source/misc/accimplaccess.cxx
Dosyayı görüntüle @
c95ff75d
...
...
@@ -84,7 +84,7 @@ namespace comphelper
}
void
OAccessibleImplementationAccess
::
setStateBit
(
const
sal_Int16
_nState
,
const
sal_B
ool
_bSet
)
void
OAccessibleImplementationAccess
::
setStateBit
(
const
sal_Int16
_nState
,
const
b
ool
_bSet
)
{
OSL_ENSURE
(
_nState
>=
0
&&
static_cast
<
sal_uInt16
>
(
_nState
)
<
sizeof
(
sal_Int64
)
*
8
,
"OAccessibleImplementationAccess::setStateBit: no more bits (shutting down the universe now)!"
);
...
...
include/comphelper/accessibleselectionhelper.hxx
Dosyayı görüntüle @
c95ff75d
...
...
@@ -62,7 +62,7 @@ namespace comphelper
// select the specified child => watch for special ChildIndexes (ACCESSIBLE_SELECTION_CHILD_xxx)
virtual
void
implSelect
(
sal_Int32
nAccessibleChildIndex
,
sal_B
ool
bSelect
)
implSelect
(
sal_Int32
nAccessibleChildIndex
,
b
ool
bSelect
)
throw
(
css
::
lang
::
IndexOutOfBoundsException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
=
0
;
protected
:
...
...
include/comphelper/accimplaccess.hxx
Dosyayı görüntüle @
c95ff75d
...
...
@@ -85,7 +85,7 @@ namespace comphelper
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>&
_rxAccParent
);
/// sets or resets a bit of the foreign controlled states
void
setStateBit
(
const
sal_Int16
_nState
,
const
sal_B
ool
_bSet
);
void
setStateBit
(
const
sal_Int16
_nState
,
const
b
ool
_bSet
);
protected
:
OAccessibleImplementationAccess
(
);
...
...
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