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
ae94fc5b
Kaydet (Commit)
ae94fc5b
authored
Ara 09, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
guard against missing indent property
Change-Id: I2d3369aed4b242acc936a71ee9be573c1ebc7a8f
üst
b7c2e9ae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
lwppara.cxx
lotuswordpro/source/filter/lwppara.cxx
+7
-6
No files found.
lotuswordpro/source/filter/lwppara.cxx
Dosyayı görüntüle @
ae94fc5b
...
...
@@ -395,15 +395,16 @@ void LwpPara::RegisterStyle()
case
PP_LOCAL_INDENT
:
{
noIndent
=
false
;
if
(
!
rParaStyle
.
GetIndent
())
OverrideIndent
(
nullptr
,
static_cast
<
LwpParaIndentProperty
*>
(
pProps
)
->
GetIndent
(),
pOverStyle
);
else
LwpIndentOverride
*
pIndent
=
static_cast
<
LwpParaIndentProperty
*>
(
pProps
)
->
GetIndent
();
if
(
pIndent
)
{
OverrideIndent
(
m_pIndentOverride
,
static_cast
<
LwpParaIndentProperty
*>
(
pProps
)
->
GetIndent
(),
pOverStyle
);
if
(
!
rParaStyle
.
GetIndent
())
OverrideIndent
(
nullptr
,
pIndent
,
pOverStyle
);
else
OverrideIndent
(
m_pIndentOverride
,
pIndent
,
pOverStyle
);
}
}
break
;
}
case
PP_LOCAL_SPACING
:
{
noSpacing
=
false
;
...
...
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