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
548a3c8f
Kaydet (Commit)
548a3c8f
authored
Ara 03, 2014
tarafından
Bjoern Michaelsen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
use C++11 iteration
Change-Id: I1b72decd1ef34575508d39c9ee09bb6e5c3f108b
üst
fb793876
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
viewimp.cxx
sw/source/core/view/viewimp.cxx
+4
-7
No files found.
sw/source/core/view/viewimp.cxx
Dosyayı görüntüle @
548a3c8f
...
...
@@ -310,14 +310,11 @@ void SwViewImp::MoveAccessible( const SwFrm *pFrm, const SdrObject *pObj,
void
SwViewImp
::
InvalidateAccessibleFrmContent
(
const
SwFrm
*
pFrm
)
{
OSL_ENSURE
(
pFrm
->
IsAccessibleFrm
(),
"frame is not accessible"
);
SwViewShell
*
pVSh
=
GetShell
();
SwViewShell
*
pTmp
=
pVSh
;
do
for
(
SwViewShell
&
rTmp
:
GetShell
()
->
GetRingContainer
())
{
if
(
pTmp
->
Imp
()
->
IsAccessible
()
)
pTmp
->
Imp
()
->
GetAccessibleMap
().
InvalidateContent
(
pFrm
);
pTmp
=
static_cast
<
SwViewShell
*>
(
pTmp
->
GetNext
());
}
while
(
pTmp
!=
pVSh
);
if
(
rTmp
.
Imp
()
->
IsAccessible
()
)
rTmp
.
Imp
()
->
GetAccessibleMap
().
InvalidateContent
(
pFrm
);
}
}
void
SwViewImp
::
InvalidateAccessibleCursorPosition
(
const
SwFrm
*
pFrm
)
...
...
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