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
e77c5738
Kaydet (Commit)
e77c5738
authored
Ara 10, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fdo#76776 crashes after paste a table from Writer
Change-Id: If859352a7d8d409e5c3c651e0ffea0b3687007db
üst
1ecf9ed3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
0 deletions
+10
-0
eertfpar.cxx
editeng/source/editeng/eertfpar.cxx
+7
-0
rtftoken.h
include/svtools/rtftoken.h
+1
-0
rtfkeywd.cxx
svtools/source/svrtf/rtfkeywd.cxx
+2
-0
No files found.
editeng/source/editeng/eertfpar.cxx
Dosyayı görüntüle @
e77c5738
...
...
@@ -197,6 +197,13 @@ void EditRTFParser::NextToken( int nToken )
ReadField
();
}
break
;
case
RTF_SHPINST
:
// fdo#76776 process contents of shpinst
break
;
case
RTF_SP
:
// fdo#76776 but skip SP groups
{
SkipGroup
();
}
break
;
case
RTF_PGDSCTBL
:
// #i29453# ignore \*\pgdsctbl destination
case
RTF_LISTTEXT
:
{
...
...
include/svtools/rtftoken.h
Dosyayı görüntüle @
e77c5738
...
...
@@ -1100,6 +1100,7 @@ enum RTF_TOKEN_IDS {
RTF_SHPTXT
,
RTF_SHPFHDR
,
RTF_SHPGRP
,
RTF_SHPINST
,
RTF_SHPRIGHT
,
RTF_SHPFBLWTXT
,
RTF_SHPZ
,
...
...
svtools/source/svrtf/rtfkeywd.cxx
Dosyayı görüntüle @
e77c5738
...
...
@@ -1000,6 +1000,7 @@ static RTF_TokenEntry aRTFTokenTab[] = {
{{
OOO_STRING_SVTOOLS_RTF_SHPFBLWTXT
},
RTF_SHPFBLWTXT
},
{{
OOO_STRING_SVTOOLS_RTF_SHPFHDR
},
RTF_SHPFHDR
},
{{
OOO_STRING_SVTOOLS_RTF_SHPGRP
},
RTF_SHPGRP
},
{{
OOO_STRING_SVTOOLS_RTF_SHPINST
},
RTF_SHPINST
},
{{
OOO_STRING_SVTOOLS_RTF_SHPLEFT
},
RTF_SHPLEFT
},
{{
OOO_STRING_SVTOOLS_RTF_SHPLID
},
RTF_SHPLID
},
{{
OOO_STRING_SVTOOLS_RTF_SHPLOCKANCHOR
},
RTF_SHPLOCKANCHOR
},
...
...
@@ -1227,6 +1228,7 @@ int GetRTFToken( const OUString& rSearch )
sizeof
(
RTF_TokenEntry
),
RTFKeyCompare
)))
nRet
=
((
RTF_TokenEntry
*
)
pFound
)
->
nToken
;
return
nRet
;
}
...
...
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