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
742bcd2b
Kaydet (Commit)
742bcd2b
authored
Ara 18, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
crashtesting: these can happen with broken documents
Change-Id: I35f77345804b3ebfda9d427de79968b193d1419a
üst
8217ddbf
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
10 deletions
+6
-10
lwpdivinfo.cxx
lotuswordpro/source/filter/lwpdivinfo.cxx
+2
-6
lwpfont.cxx
lotuswordpro/source/filter/lwpfont.cxx
+1
-1
lwptablelayout.cxx
lotuswordpro/source/filter/lwptablelayout.cxx
+2
-2
lwptblformula.cxx
lotuswordpro/source/filter/lwptblformula.cxx
+1
-1
No files found.
lotuswordpro/source/filter/lwpdivinfo.cxx
Dosyayı görüntüle @
742bcd2b
...
...
@@ -108,15 +108,11 @@ void LwpDivInfo::Read()
m_FillerPageTextID
.
ReadIndexed
(
m_pObjStrm
);
// read external file object stuff
#if !defined(NDEBUG)
sal_uInt16
type
=
#endif
m_pObjStrm
->
QuickReaduInt16
();
sal_uInt16
type
=
m_pObjStrm
->
QuickReaduInt16
();
//cpExternalFile = LNULL;
assert
(
type
==
0
);
SAL_WARN_IF
(
type
!=
0
,
"lwp"
,
"should be 0"
);
m_pObjStrm
->
SkipExtra
();
}
void
LwpDivInfo
::
SkipFront
()
...
...
lotuswordpro/source/filter/lwpfont.cxx
Dosyayı görüntüle @
742bcd2b
...
...
@@ -262,7 +262,7 @@ void LwpFontTable::Read(LwpObjectStream *pStrm)
OUString
LwpFontTable
::
GetFaceName
(
sal_uInt16
index
)
//index: start from 1
{
assert
(
index
<=
m_nCount
&&
index
>
0
);
SAL_WARN_IF
(
index
>
m_nCount
||
index
<=
0
,
"lwp"
,
"bad font index"
);
return
(
index
<=
m_nCount
&&
index
>
0
)
?
m_pFontEntries
[
index
-
1
].
GetFaceName
()
:
OUString
();
}
...
...
lotuswordpro/source/filter/lwptablelayout.cxx
Dosyayı görüntüle @
742bcd2b
...
...
@@ -215,13 +215,13 @@ double LwpSuperTableLayout::GetTableWidth()
LwpTableLayout
*
pTableLayout
=
GetTableLayout
();
if
(
!
pTableLayout
)
{
assert
(
false
);
SAL_WARN
(
"lwp"
,
"missing table layout, early return"
);
return
0
;
}
LwpTable
*
pTable
=
pTableLayout
->
GetTable
();
if
(
!
pTable
)
{
assert
(
false
);
SAL_WARN
(
"lwp"
,
"missing table, early return"
);
return
0
;
}
double
dDefaultWidth
=
pTable
->
GetWidth
();
...
...
lotuswordpro/source/filter/lwptblformula.cxx
Dosyayı görüntüle @
742bcd2b
...
...
@@ -342,7 +342,7 @@ void LwpFormulaInfo::Read()
}
else
{
assert
(
false
);
SAL_WARN
(
"lwp"
,
"missing row list"
);
}
}
m_pObjStrm
->
SeekRel
(
2
);
//flags, size in file: sal_uInt16
...
...
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