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
3b778890
Kaydet (Commit)
3b778890
authored
Nis 23, 2015
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
winaccessibility: rename unhelpful string defines.
Change-Id: Ib73ddecb9fd49a2e1a5bb690a0f4bbbc77d9047a
üst
a339c949
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
AccActionBase.cxx
winaccessibility/source/UAccCOM/AccActionBase.cxx
+4
-4
acccommon.h
winaccessibility/source/UAccCOM/acccommon.h
+4
-4
No files found.
winaccessibility/source/UAccCOM/AccActionBase.cxx
Dosyayı görüntüle @
3b778890
...
...
@@ -68,12 +68,12 @@ void GetDfActionByUNORole(XAccessibleContext* pRContext, BSTR* pRet)
switch
(
Role
)
{
case
PUSH_BUTTON
:
*
pRet
=
::
SysAllocString
(
PRESS
);
*
pRet
=
::
SysAllocString
(
PRESS
_STR
);
break
;
case
RADIO_BUTTON
:
case
MENU_ITEM
:
case
LIST_ITEM
:
*
pRet
=
::
SysAllocString
(
SELECT
);
*
pRet
=
::
SysAllocString
(
SELECT
_STR
);
break
;
case
CHECK_BOX
:
{
...
...
@@ -85,13 +85,13 @@ void GetDfActionByUNORole(XAccessibleContext* pRContext, BSTR* pRet)
Sequence
<
short
>
pStates
=
pRState
->
getStates
();
int
count
=
pStates
.
getLength
();
*
pRet
=
::
SysAllocString
(
CHECK
);
*
pRet
=
::
SysAllocString
(
CHECK
_STR
);
for
(
int
iIndex
=
0
;
iIndex
<
count
;
iIndex
++
)
{
if
(
pStates
[
iIndex
]
==
AccessibleStateType
::
CHECKED
)
{
SAFE_SYSFREESTRING
(
*
pRet
);
*
pRet
=
::
SysAllocString
(
UNCHECK
);
*
pRet
=
::
SysAllocString
(
UNCHECK
_STR
);
break
;
}
}
...
...
winaccessibility/source/UAccCOM/acccommon.h
Dosyayı görüntüle @
3b778890
...
...
@@ -53,10 +53,10 @@ enum DM_NIR {
};
#define SELECT L"Select"
#define PRESS L"Press"
#define UNCHECK L"UnCheck"
#define CHECK L"Check"
#define SELECT
_STR
L"Select"
#define PRESS
_STR
L"Press"
#define UNCHECK
_STR
L"UnCheck"
#define CHECK
_STR
L"Check"
//End
static
DWORD
GetMSAAStateFromUNO
(
short
xState
);
...
...
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