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
137cf765
Kaydet (Commit)
137cf765
authored
Eyl 02, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
detect if new offsets are the same as the previous ones and avoid loop
Change-Id: I4c53d4bce9a69d79e34bdd634c296d9b495e1904
üst
ec7329f6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
ww8par2.cxx
sw/source/filter/ww8/ww8par2.cxx
+9
-0
No files found.
sw/source/filter/ww8/ww8par2.cxx
Dosyayı görüntüle @
137cf765
...
@@ -413,6 +413,8 @@ bool SwWW8ImplReader::SearchRowEnd(WW8PLCFx_Cp_FKP* pPap, WW8_CP &rStartCp,
...
@@ -413,6 +413,8 @@ bool SwWW8ImplReader::SearchRowEnd(WW8PLCFx_Cp_FKP* pPap, WW8_CP &rStartCp,
WW8PLCFxDesc
aRes
;
WW8PLCFxDesc
aRes
;
aRes
.
pMemPos
=
0
;
aRes
.
pMemPos
=
0
;
aRes
.
nEndPos
=
rStartCp
;
aRes
.
nEndPos
=
rStartCp
;
bool
bReadRes
(
false
);
WW8PLCFxDesc
aPrevRes
;
while
(
pPap
->
HasFkp
()
&&
rStartCp
!=
WW8_CP_MAX
)
while
(
pPap
->
HasFkp
()
&&
rStartCp
!=
WW8_CP_MAX
)
{
{
...
@@ -445,6 +447,13 @@ bool SwWW8ImplReader::SearchRowEnd(WW8PLCFx_Cp_FKP* pPap, WW8_CP &rStartCp,
...
@@ -445,6 +447,13 @@ bool SwWW8ImplReader::SearchRowEnd(WW8PLCFx_Cp_FKP* pPap, WW8_CP &rStartCp,
}
}
pPap
->
GetSprms
(
&
aRes
);
pPap
->
GetSprms
(
&
aRes
);
pPap
->
SetDirty
(
false
);
pPap
->
SetDirty
(
false
);
if
(
bReadRes
&&
aRes
.
nEndPos
==
aPrevRes
.
nEndPos
&&
aRes
.
nStartPos
==
aPrevRes
.
nStartPos
)
{
SAL_WARN
(
"sw.ww8"
,
"SearchRowEnd, loop in paragraph property chain"
);
break
;
}
bReadRes
=
true
;
aPrevRes
=
aRes
;
//Update our aRes to get the new starting point of the next properties
//Update our aRes to get the new starting point of the next properties
rStartCp
=
aRes
.
nEndPos
;
rStartCp
=
aRes
.
nEndPos
;
}
}
...
...
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