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
b89bf99f
Kaydet (Commit)
b89bf99f
authored
Mar 24, 2012
tarafından
Rafael Dominguez
Kaydeden (comit)
Luboš Luňák
Nis 02, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Replace List with std:vector<EPPTHyperlink>.
üst
a7eb227c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
8 deletions
+6
-8
eppt.cxx
sd/source/filter/eppt/eppt.cxx
+4
-6
eppt.hxx
sd/source/filter/eppt/eppt.hxx
+1
-1
epptso.cxx
sd/source/filter/eppt/epptso.cxx
+1
-1
No files found.
sd/source/filter/eppt/eppt.cxx
Dosyayı görüntüle @
b89bf99f
...
...
@@ -465,8 +465,6 @@ PPTWriter::~PPTWriter()
while
(
aStyleSheetIter
<
maStyleSheetList
.
end
()
)
delete
*
aStyleSheetIter
++
;
for
(
pPtr
=
maHyperlink
.
First
();
pPtr
;
pPtr
=
maHyperlink
.
Next
()
)
delete
(
EPPTHyperlink
*
)
pPtr
;
for
(
pPtr
=
maExOleObj
.
First
();
pPtr
;
pPtr
=
maExOleObj
.
Next
()
)
delete
(
PPTExOleObjEntry
*
)
pPtr
;
...
...
@@ -962,7 +960,7 @@ sal_Bool PPTWriter::ImplCreateHyperBlob( SvMemoryStream& rStrm )
rStrm
<<
(
sal_uInt32
)
0
;
// property size
rStrm
<<
(
sal_uInt32
)
0
;
// property count
for
(
EPPTHyperlink
*
pLink
=
(
EPPTHyperlink
*
)
maHyperlink
.
First
();
pLink
;
pLink
=
(
EPPTHyperlink
*
)
maHyperlink
.
Next
()
)
for
(
std
::
vector
<
EPPTHyperlink
>::
const_iterator
pIter
=
maHyperlink
.
begin
();
pIter
!=
maHyperlink
.
end
();
++
pIter
)
{
nParaCount
+=
6
;
rStrm
<<
(
sal_uInt32
)
3
// Type VT_I4
...
...
@@ -986,15 +984,15 @@ sal_Bool PPTWriter::ImplCreateHyperBlob( SvMemoryStream& rStrm )
// = 7 : " " " " (PPT) text range
// = 8 : " " " " (Project) task
sal_uInt32
nUrlLen
=
p
Link
->
aURL
.
Len
();
const
sal_Unicode
*
pUrl
=
p
Link
->
aURL
.
GetBuffer
();
sal_uInt32
nUrlLen
=
p
Iter
->
aURL
.
Len
();
const
sal_Unicode
*
pUrl
=
p
Iter
->
aURL
.
GetBuffer
();
sal_uInt32
nInfo
=
7
;
rStrm
<<
(
sal_uInt32
)
3
// Type VT_I4
<<
nInfo
;
// Info
switch
(
p
Link
->
nType
&
0xff
)
switch
(
p
Iter
->
nType
&
0xff
)
{
case
1
:
// click action to slidenumber
{
...
...
sd/source/filter/eppt/eppt.hxx
Dosyayı görüntüle @
b89bf99f
...
...
@@ -213,7 +213,7 @@ class PPTWriter : public PPTWriterBase, public PPTExBulletProvider
sal_uInt32
mnShapeMasterTitle
;
sal_uInt32
mnShapeMasterBody
;
List
maHyperlink
;
std
::
vector
<
EPPTHyperlink
>
maHyperlink
;
ppt
::
ExSoundCollection
maSoundCollection
;
...
...
sd/source/filter/eppt/epptso.cxx
Dosyayı görüntüle @
b89bf99f
...
...
@@ -413,7 +413,7 @@ sal_uInt32 PPTWriter::ImplInsertBookmarkURL( const String& rBookmarkURL, const s
if
(
!
aRelUrl
.
isEmpty
()
)
sBookmarkURL
=
aRelUrl
;
}
maHyperlink
.
Insert
(
new
EPPTHyperlink
(
sBookmarkURL
,
nType
),
LIST_APPEND
);
maHyperlink
.
push_back
(
EPPTHyperlink
(
sBookmarkURL
,
nType
)
);
*
mpExEmbed
<<
(
sal_uInt16
)
0xf
<<
(
sal_uInt16
)
EPP_ExHyperlink
...
...
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