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
703492eb
Kaydet (Commit)
703492eb
authored
Haz 07, 2012
tarafından
Noel Grandin
Kaydeden (comit)
Michael Stahl
Haz 12, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Convert SV_DECL_PTRARR_DEL(PptFontEntityAtomList) to boost::ptr_vector
Change-Id: Ie7aa19b7ef5c25b2547a9fd29810fb56427edac0
üst
153c5e3f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
svdfppt.cxx
filter/source/msfilter/svdfppt.cxx
+4
-7
No files found.
filter/source/msfilter/svdfppt.cxx
Dosyayı görüntüle @
703492eb
...
...
@@ -451,10 +451,7 @@ SvStream& operator>>( SvStream& rIn, PptFontEntityAtom& rAtom )
return
rIn
;
}
SV_DECL_PTRARR_DEL
(
PptFontEntityAtomList
,
PptFontEntityAtom
*
,
16
)
SV_IMPL_PTRARR
(
PptFontEntityAtomList
,
PptFontEntityAtom
*
);
class
PptFontCollection
:
public
PptFontEntityAtomList
{
class
PptFontCollection
:
public
boost
::
ptr_vector
<
PptFontEntityAtom
>
{
};
SvStream
&
operator
>>
(
SvStream
&
rIn
,
PptUserEditAtom
&
rAtom
)
...
...
@@ -576,8 +573,8 @@ sal_Bool SdrEscherImport::SeekToShape( SvStream& /*rSt*/, void* /*pClientData*/,
PptFontEntityAtom
*
SdrEscherImport
::
GetFontEnityAtom
(
sal_uInt32
nNum
)
const
{
PptFontEntityAtom
*
pRetValue
=
NULL
;
if
(
pFonts
&&
(
nNum
<
pFonts
->
Count
()
)
)
pRetValue
=
(
*
pFonts
)[
(
sal_uInt16
)
nNum
];
if
(
pFonts
&&
(
nNum
<
pFonts
->
size
()
)
)
pRetValue
=
&
(
*
pFonts
)[
(
sal_uInt16
)
nNum
];
return
pRetValue
;
}
...
...
@@ -2153,7 +2150,7 @@ sal_Bool SdrPowerPointImport::ReadFontCollection()
{
pFont
->
eCharSet
=
RTL_TEXTENCODING_SYMBOL
;
};
pFonts
->
C40_INSERT
(
PptFontEntityAtom
,
pFont
,
nCount2
++
);
pFonts
->
insert
(
pFonts
->
begin
()
+
nCount2
++
,
pFont
);
}
delete
pVDev
;
}
...
...
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