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
0c3211b1
Kaydet (Commit)
0c3211b1
authored
Ara 05, 2013
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
crash on exit from xml form document with accessibility enabled
Change-Id: If60075b939569cf339f7ccf7e39e513fbe1f74bf
üst
a0a90389
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
treelist.cxx
svtools/source/contnr/treelist.cxx
+4
-2
treelistbox.cxx
svtools/source/contnr/treelistbox.cxx
+2
-2
No files found.
svtools/source/contnr/treelist.cxx
Dosyayı görüntüle @
0c3211b1
...
...
@@ -1472,7 +1472,8 @@ sal_Bool SvListView::IsSelected( SvTreeListEntry* pEntry ) const
{
DBG_ASSERT
(
pEntry
,
"IsExpanded:No Entry"
);
SvDataTable
::
const_iterator
itr
=
maDataTable
.
find
(
pEntry
);
DBG_ASSERT
(
itr
!=
maDataTable
.
end
(),
"Entry not in Table"
);
if
(
itr
==
maDataTable
.
end
())
return
false
;
return
itr
->
second
->
IsSelected
();
}
...
...
@@ -1487,7 +1488,8 @@ void SvListView::SetEntryFocus( SvTreeListEntry* pEntry, sal_Bool bFocus )
const
SvViewDataEntry
*
SvListView
::
GetViewData
(
const
SvTreeListEntry
*
pEntry
)
const
{
SvDataTable
::
const_iterator
itr
=
maDataTable
.
find
(
const_cast
<
SvTreeListEntry
*>
(
pEntry
)
);
DBG_ASSERT
(
itr
!=
maDataTable
.
end
(),
"Entry not in model or wrong view"
);
if
(
itr
==
maDataTable
.
end
())
return
NULL
;
return
itr
->
second
;
}
...
...
svtools/source/contnr/treelistbox.cxx
Dosyayı görüntüle @
0c3211b1
...
...
@@ -4081,8 +4081,8 @@ void SvTreeListBox::FillAccessibleEntryStateSet( SvTreeListEntry* pEntry, ::utl:
SvViewDataEntry
*
pViewDataNewCur
=
0
;
if
(
pEntry
)
{
pViewDataNewCur
=
GetViewDataEntry
(
pEntry
);
if
(
pViewDataNewCur
->
HasFocus
())
pViewDataNewCur
=
GetViewDataEntry
(
pEntry
);
if
(
pViewDataNewCur
&&
pViewDataNewCur
->
HasFocus
())
rStateSet
.
AddState
(
AccessibleStateType
::
FOCUSED
);
}
}
...
...
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