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
0dcdbefa
Kaydet (Commit)
0dcdbefa
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: Ifc64a7e301e9ecaa59890d0363d699eb9ff5812d
üst
d14ab013
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
12 deletions
+9
-12
pagechg.cxx
sw/source/core/layout/pagechg.cxx
+9
-12
No files found.
sw/source/core/layout/pagechg.cxx
Dosyayı görüntüle @
0dcdbefa
...
...
@@ -1711,23 +1711,20 @@ void SwRootFrm::UnoRemoveAllActions()
void
SwRootFrm
::
UnoRestoreAllActions
()
{
SwViewShell
*
pSh
=
GetCurrShell
();
if
(
pSh
)
do
if
(
GetCurrShell
()
)
for
(
SwViewShell
&
rSh
:
GetCurrShell
()
->
GetRingContainer
())
{
sal_uInt16
nActions
=
pSh
->
GetRestoreActions
();
sal_uInt16
nActions
=
rSh
.
GetRestoreActions
();
while
(
nActions
--
)
{
if
(
pSh
->
ISA
(
SwCrsrShell
)
)
static_cast
<
SwCrsrShell
*>
(
p
Sh
)
->
StartAction
();
if
(
rSh
.
ISA
(
SwCrsrShell
)
)
static_cast
<
SwCrsrShell
*>
(
&
r
Sh
)
->
StartAction
();
else
pSh
->
StartAction
();
rSh
.
StartAction
();
}
pSh
->
SetRestoreActions
(
0
);
pSh
->
LockView
(
false
);
pSh
=
static_cast
<
SwViewShell
*>
(
pSh
->
GetNext
());
}
while
(
pSh
!=
GetCurrShell
()
);
rSh
.
SetRestoreActions
(
0
);
rSh
.
LockView
(
false
);
}
}
// Helper functions for SwRootFrm::CheckViewLayout
...
...
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