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
0ed7c8b5
Kaydet (Commit)
0ed7c8b5
authored
Ock 23, 2015
tarafından
Bjoern Michaelsen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
do not use manual iteration
Change-Id: I71da7d2810309266b6e37fd531232ca33928f5b9
üst
4e00df4f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
crsrsh.cxx
sw/source/core/crsr/crsrsh.cxx
+7
-3
No files found.
sw/source/core/crsr/crsrsh.cxx
Dosyayı görüntüle @
0ed7c8b5
...
@@ -907,8 +907,12 @@ void SwCrsrShell::ClearMark()
...
@@ -907,8 +907,12 @@ void SwCrsrShell::ClearMark()
// is there any GetMark?
// is there any GetMark?
if
(
m_pTblCrsr
)
if
(
m_pTblCrsr
)
{
{
while
(
m_pCurCrsr
->
GetNext
()
!=
m_pCurCrsr
)
std
::
vector
<
SwViewShell
*>
vShells
;
delete
m_pCurCrsr
->
GetNext
();
for
(
SwViewShell
&
rShell
:
GetRingContainer
())
if
(
&
rShell
!=
this
)
vShells
.
push_back
(
&
rShell
);
for
(
SwViewShell
*
pShell
:
vShells
)
delete
pShell
;
m_pTblCrsr
->
DeleteMark
();
m_pTblCrsr
->
DeleteMark
();
m_pCurCrsr
->
DeleteMark
();
m_pCurCrsr
->
DeleteMark
();
...
@@ -2678,7 +2682,7 @@ SwCrsrShell::SwCrsrShell( SwDoc& rDoc, vcl::Window *pInitWin,
...
@@ -2678,7 +2682,7 @@ SwCrsrShell::SwCrsrShell( SwDoc& rDoc, vcl::Window *pInitWin,
SwCrsrShell
::~
SwCrsrShell
()
SwCrsrShell
::~
SwCrsrShell
()
{
{
// if it is not the last view then at least the field should be updated
// if it is not the last view then at least the field should be updated
if
(
GetNext
()
!=
this
)
if
(
!
unique
()
)
CheckTblBoxCntnt
(
m_pCurCrsr
->
GetPoint
()
);
CheckTblBoxCntnt
(
m_pCurCrsr
->
GetPoint
()
);
else
else
ClearTblBoxCntnt
();
ClearTblBoxCntnt
();
...
...
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