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
63ef826b
Kaydet (Commit)
63ef826b
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: Ic43c07b1530595980794f89f94dfad28771fc155
üst
65bc59b2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
15 deletions
+12
-15
pagechg.cxx
sw/source/core/layout/pagechg.cxx
+12
-15
No files found.
sw/source/core/layout/pagechg.cxx
Dosyayı görüntüle @
63ef826b
...
@@ -1658,25 +1658,22 @@ void SwRootFrm::StartAllAction()
...
@@ -1658,25 +1658,22 @@ void SwRootFrm::StartAllAction()
void
SwRootFrm
::
EndAllAction
(
bool
bVirDev
)
void
SwRootFrm
::
EndAllAction
(
bool
bVirDev
)
{
{
SwViewShell
*
pSh
=
GetCurrShell
();
if
(
GetCurrShell
()
)
if
(
pSh
)
for
(
SwViewShell
&
rSh
:
GetCurrShell
()
->
GetRingContainer
())
do
{
{
const
bool
bOldEndActionByVirDev
=
pSh
->
IsEndActionByVirDev
();
const
bool
bOldEndActionByVirDev
=
rSh
.
IsEndActionByVirDev
();
pSh
->
SetEndActionByVirDev
(
bVirDev
);
rSh
.
SetEndActionByVirDev
(
bVirDev
);
if
(
pSh
->
ISA
(
SwCrsrShell
)
)
if
(
rSh
.
ISA
(
SwCrsrShell
)
)
{
{
static_cast
<
SwCrsrShell
*>
(
p
Sh
)
->
EndAction
();
static_cast
<
SwCrsrShell
*>
(
&
r
Sh
)
->
EndAction
();
static_cast
<
SwCrsrShell
*>
(
p
Sh
)
->
CallChgLnk
();
static_cast
<
SwCrsrShell
*>
(
&
r
Sh
)
->
CallChgLnk
();
if
(
pSh
->
ISA
(
SwFEShell
)
)
if
(
rSh
.
ISA
(
SwFEShell
)
)
static_cast
<
SwFEShell
*>
(
p
Sh
)
->
SetChainMarker
();
static_cast
<
SwFEShell
*>
(
&
r
Sh
)
->
SetChainMarker
();
}
}
else
else
pSh
->
EndAction
();
rSh
.
EndAction
();
pSh
->
SetEndActionByVirDev
(
bOldEndActionByVirDev
);
rSh
.
SetEndActionByVirDev
(
bOldEndActionByVirDev
);
pSh
=
static_cast
<
SwViewShell
*>
(
pSh
->
GetNext
());
}
}
while
(
pSh
!=
GetCurrShell
()
);
}
}
void
SwRootFrm
::
UnoRemoveAllActions
()
void
SwRootFrm
::
UnoRemoveAllActions
()
...
...
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