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
f0d0c8a4
Kaydet (Commit)
f0d0c8a4
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: Ifc772d50d6431d9c377d00729bfa77b4359af98a
üst
b9e413c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
layact.cxx
sw/source/core/layout/layact.cxx
+6
-7
No files found.
sw/source/core/layout/layact.cxx
Dosyayı görüntüle @
f0d0c8a4
...
@@ -2147,17 +2147,16 @@ SwLayIdle::SwLayIdle( SwRootFrm *pRt, SwViewImp *pI ) :
...
@@ -2147,17 +2147,16 @@ SwLayIdle::SwLayIdle( SwRootFrm *pRt, SwViewImp *pI ) :
// We remember the shells where the cursor is visible, so we can make
// We remember the shells where the cursor is visible, so we can make
// it visible again if needed after a document change.
// it visible again if needed after a document change.
std
::
vector
<
bool
>
aBools
;
std
::
vector
<
bool
>
aBools
;
SwViewShell
*
pSh
=
pImp
->
GetShell
();
for
(
SwViewShell
&
rSh
:
pImp
->
GetShell
()
->
GetRingContainer
())
do
{
{
++
pSh
->
mnStartAction
;
++
rSh
.
mnStartAction
;
bool
bVis
=
false
;
bool
bVis
=
false
;
if
(
pSh
->
ISA
(
SwCrsrShell
)
)
if
(
rSh
.
ISA
(
SwCrsrShell
)
)
{
{
bVis
=
static_cast
<
SwCrsrShell
*>
(
pSh
)
->
GetCharRect
().
IsOver
(
pSh
->
VisArea
());
bVis
=
static_cast
<
SwCrsrShell
*>
(
&
rSh
)
->
GetCharRect
().
IsOver
(
rSh
.
VisArea
());
}
}
aBools
.
push_back
(
bVis
);
aBools
.
push_back
(
bVis
);
pSh
=
static_cast
<
SwViewShell
*>
(
pSh
->
GetNext
());
}
}
while
(
pSh
!=
pImp
->
GetShell
()
);
bool
bInterrupt
(
false
);
bool
bInterrupt
(
false
);
{
{
...
...
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