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
25c25f85
Kaydet (Commit)
25c25f85
authored
Nis 14, 2015
tarafından
David Tardon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
tdf#90028 avoid crash if style is not found
Change-Id: I4ffc8cdcb67ecb4c4afa641c9219dd465fe13d29
üst
ef0340bd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
lwptablelayout.cxx
lotuswordpro/source/filter/lwptablelayout.cxx
+8
-4
No files found.
lotuswordpro/source/filter/lwptablelayout.cxx
Dosyayı görüntüle @
25c25f85
...
@@ -1201,13 +1201,17 @@ void LwpTableLayout::PostProcessParagraph(XFCell *pCell, sal_uInt16 nRowID, sal_
...
@@ -1201,13 +1201,17 @@ void LwpTableLayout::PostProcessParagraph(XFCell *pCell, sal_uInt16 nRowID, sal_
}
}
XFParaStyle
*
pStyle
=
pXFStyleManager
->
FindParaStyle
(
pXFPara
->
GetStyleName
());
XFParaStyle
*
pStyle
=
pXFStyleManager
->
FindParaStyle
(
pXFPara
->
GetStyleName
());
if
(
pStyle
->
GetNumberRight
()
||
bColorMod
)
if
(
(
pStyle
&&
pStyle
->
GetNumberRight
())
||
bColorMod
)
{
{
XFParaStyle
*
pOverStyle
=
new
XFParaStyle
;
XFParaStyle
*
pOverStyle
=
new
XFParaStyle
;
*
pOverStyle
=
*
pStyle
;
if
(
pStyle
->
GetNumberRight
())
if
(
pStyle
)
pOverStyle
->
SetAlignType
(
enumXFAlignEnd
);
{
*
pOverStyle
=
*
pStyle
;
if
(
pStyle
->
GetNumberRight
())
pOverStyle
->
SetAlignType
(
enumXFAlignEnd
);
}
if
(
bColorMod
)
if
(
bColorMod
)
{
{
...
...
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