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
2f6497b0
Kaydet (Commit)
2f6497b0
authored
Nis 24, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:simplifybool
Change-Id: I70a514996598c45faa82973e25b6c6b796a613ce
üst
47903156
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
AccessibleBrowseBoxHeaderBar.cxx
...sibility/source/extended/AccessibleBrowseBoxHeaderBar.cxx
+2
-2
accessibletablistboxtable.cxx
accessibility/source/extended/accessibletablistboxtable.cxx
+1
-1
No files found.
accessibility/source/extended/AccessibleBrowseBoxHeaderBar.cxx
Dosyayı görüntüle @
2f6497b0
...
...
@@ -169,7 +169,7 @@ sal_Bool SAL_CALL AccessibleBrowseBoxHeaderBar::isAccessibleRowSelected( sal_Int
::
osl
::
MutexGuard
aGuard
(
getOslMutex
()
);
ensureIsAlive
();
ensureIsValidRow
(
nRow
);
return
isRowBar
()
?
implIsRowSelected
(
nRow
)
:
false
;
return
isRowBar
()
&&
implIsRowSelected
(
nRow
)
;
}
sal_Bool
SAL_CALL
AccessibleBrowseBoxHeaderBar
::
isAccessibleColumnSelected
(
sal_Int32
nColumn
)
...
...
@@ -179,7 +179,7 @@ sal_Bool SAL_CALL AccessibleBrowseBoxHeaderBar::isAccessibleColumnSelected( sal_
::
osl
::
MutexGuard
aGuard
(
getOslMutex
()
);
ensureIsAlive
();
ensureIsValidColumn
(
nColumn
);
return
isColumnBar
()
?
implIsColumnSelected
(
nColumn
)
:
false
;
return
isColumnBar
()
&&
implIsColumnSelected
(
nColumn
)
;
}
Reference
<
XAccessible
>
SAL_CALL
AccessibleBrowseBoxHeaderBar
::
getAccessibleCellAt
(
...
...
accessibility/source/extended/accessibletablistboxtable.cxx
Dosyayı görüntüle @
2f6497b0
...
...
@@ -271,7 +271,7 @@ namespace accessibility
bool
AccessibleTabListBoxTable
::
implIsRowSelected
(
sal_Int32
_nRow
)
const
{
return
m_pTabListBox
?
m_pTabListBox
->
IsSelected
(
m_pTabListBox
->
GetEntry
(
_nRow
)
)
:
false
;
return
m_pTabListBox
&&
m_pTabListBox
->
IsSelected
(
m_pTabListBox
->
GetEntry
(
_nRow
)
)
;
}
void
AccessibleTabListBoxTable
::
implSelectRow
(
sal_Int32
_nRow
,
bool
_bSelect
)
...
...
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