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
9c497e9e
Kaydet (Commit)
9c497e9e
authored
Tem 20, 2012
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SwDoc::DeleteRangeImplImpl: avoid crash on undoing comment range insert
Change-Id: I1e085448fb8fb1227794a5196e954d97af770218
üst
81d2dd00
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
13 deletions
+9
-13
docbm.cxx
sw/source/core/doc/docbm.cxx
+1
-1
docedt.cxx
sw/source/core/doc/docedt.cxx
+8
-12
No files found.
sw/source/core/doc/docbm.cxx
Dosyayı görüntüle @
9c497e9e
...
...
@@ -593,7 +593,7 @@ namespace sw { namespace mark
isPosInRange
=
true
,
isOtherPosInRange
=
true
;
}
if
(
isPosInRange
&&
(
isOtherPosInRange
||
!
pMark
->
IsExpanded
()
||
IDocumentMarkAccess
::
GetType
(
*
pMark
)
==
TEXT_FIELDMARK
))
if
(
isPosInRange
&&
(
isOtherPosInRange
||
!
pMark
->
IsExpanded
()))
{
// completely in range
...
...
sw/source/core/doc/docedt.cxx
Dosyayı görüntüle @
9c497e9e
...
...
@@ -76,6 +76,7 @@
#include "editsh.hxx"
#include <fldbas.hxx>
#include <fmtfld.hxx>
#include <docufld.hxx>
#include <unoflatpara.hxx>
#include <SwGrammarMarkUp.hxx>
...
...
@@ -1646,21 +1647,16 @@ bool SwDoc::DeleteRangeImplImpl(SwPaM & rPam)
{
SwTxtNode
*
pTxtNd
=
rPam
.
Start
()
->
nNode
.
GetNode
().
GetTxtNode
();
xub_StrLen
nIndex
=
rPam
.
Start
()
->
nContent
.
GetIndex
();
//
If there are at least two chars before the postit, we may have a fieldmark t
here.
if
(
pTxtNd
->
GetTxt
().
GetChar
(
nIndex
)
==
CH_TXTATR_INWORD
&&
nIndex
>
1
)
//
We may have a postit
here.
if
(
pTxtNd
->
GetTxt
().
GetChar
(
nIndex
)
==
CH_TXTATR_INWORD
)
{
SwTxtAttr
*
pTxtAttr
=
pTxtNd
->
GetTxtAttrForCharAt
(
nIndex
,
RES_TXTATR_FIELD
);
if
(
pTxtAttr
&&
pTxtAttr
->
GetFld
().
GetFld
()
->
Which
()
==
RES_POSTITFLD
&&
pTxtNd
->
GetTxt
().
GetChar
(
nIndex
-
1
)
==
CH_TXT_ATR_FIELDEND
)
if
(
pTxtAttr
&&
pTxtAttr
->
GetFld
().
GetFld
()
->
Which
()
==
RES_POSTITFLD
)
{
xub_StrLen
nStart
=
pTxtNd
->
GetTxt
().
SearchBackward
(
CH_TXT_ATR_FIELDSTART
,
nIndex
-
2
);
if
(
nStart
!=
STRING_NOTFOUND
)
{
SwIndex
aStart
(
pStt
->
nContent
);
aStart
=
nStart
;
SwIndex
aEnd
(
pEnd
->
nContent
);
aEnd
=
nIndex
-
1
;
_DelBookmarks
(
pStt
->
nNode
,
pEnd
->
nNode
,
NULL
,
&
aStart
,
&
aEnd
);
}
const
SwPostItField
*
pField
=
dynamic_cast
<
const
SwPostItField
*>
(
pTxtAttr
->
GetFld
().
GetFld
());
IDocumentMarkAccess
::
const_iterator_t
ppMark
=
getIDocumentMarkAccess
()
->
findMark
(
pField
->
GetName
());
if
(
ppMark
!=
getIDocumentMarkAccess
()
->
getMarksEnd
())
getIDocumentMarkAccess
()
->
deleteMark
(
ppMark
);
}
}
}
...
...
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