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
b796e268
Kaydet (Commit)
b796e268
authored
Eyl 01, 2013
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix a crash when inserting a multi-line content into cell.
Change-Id: Idf2b6ca6873860a9bb3d2dae646b0383435e58c9
üst
309c766d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
0 deletions
+8
-0
editdoc.cxx
editeng/source/editeng/editdoc.cxx
+6
-0
editdoc.hxx
editeng/source/editeng/editdoc.hxx
+1
-0
impedit4.cxx
editeng/source/editeng/impedit4.cxx
+1
-0
No files found.
editeng/source/editeng/editdoc.cxx
Dosyayı görüntüle @
b796e268
...
@@ -1732,6 +1732,12 @@ sal_Unicode ContentNode::GetChar(sal_uInt16 nPos) const
...
@@ -1732,6 +1732,12 @@ sal_Unicode ContentNode::GetChar(sal_uInt16 nPos) const
return
maString
.
GetChar
(
nPos
);
return
maString
.
GetChar
(
nPos
);
}
}
void
ContentNode
::
EnsureWrongList
()
{
if
(
!
mpWrongList
)
CreateWrongList
();
}
WrongList
*
ContentNode
::
GetWrongList
()
WrongList
*
ContentNode
::
GetWrongList
()
{
{
return
mpWrongList
.
get
();
return
mpWrongList
.
get
();
...
...
editeng/source/editeng/editdoc.hxx
Dosyayı görüntüle @
b796e268
...
@@ -283,6 +283,7 @@ public:
...
@@ -283,6 +283,7 @@ public:
void
CreateDefFont
();
void
CreateDefFont
();
void
EnsureWrongList
();
WrongList
*
GetWrongList
();
WrongList
*
GetWrongList
();
const
WrongList
*
GetWrongList
()
const
;
const
WrongList
*
GetWrongList
()
const
;
void
SetWrongList
(
WrongList
*
p
);
void
SetWrongList
(
WrongList
*
p
);
...
...
editeng/source/editeng/impedit4.cxx
Dosyayı görüntüle @
b796e268
...
@@ -2285,6 +2285,7 @@ void ImpEditEngine::DoOnlineSpelling( ContentNode* pThisNodeOnly, bool bSpellAtC
...
@@ -2285,6 +2285,7 @@ void ImpEditEngine::DoOnlineSpelling( ContentNode* pThisNodeOnly, bool bSpellAtC
if
(
pThisNodeOnly
)
if
(
pThisNodeOnly
)
pNode
=
pThisNodeOnly
;
pNode
=
pThisNodeOnly
;
pNode
->
EnsureWrongList
();
if
(
!
pNode
->
GetWrongList
()
->
IsValid
())
if
(
!
pNode
->
GetWrongList
()
->
IsValid
())
{
{
WrongList
*
pWrongList
=
pNode
->
GetWrongList
();
WrongList
*
pWrongList
=
pNode
->
GetWrongList
();
...
...
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