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
a0d2c3c5
Kaydet (Commit)
a0d2c3c5
authored
Ock 04, 2013
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
adapt RtfSdrExport and oox::vml::VMLExport to filter changes
üst
6d0b3fe0
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
vmlexport.hxx
oox/inc/oox/export/vmlexport.hxx
+1
-1
vmlexport.cxx
oox/source/export/vmlexport.cxx
+3
-3
rtfsdrexport.cxx
sw/source/filter/ww8/rtfsdrexport.cxx
+1
-1
rtfsdrexport.hxx
sw/source/filter/ww8/rtfsdrexport.hxx
+1
-1
No files found.
oox/inc/oox/export/vmlexport.hxx
Dosyayı görüntüle @
a0d2c3c5
...
...
@@ -111,7 +111,7 @@ private:
virtual
void
OpenContainer
(
sal_uInt16
nEscherContainer
,
int
nRecInstance
=
0
);
virtual
void
CloseContainer
();
virtual
sal_uInt32
EnterGroup
(
const
String
&
rShapeName
,
const
Rectangle
*
pBoundRect
=
0
);
virtual
sal_uInt32
EnterGroup
(
const
OU
String
&
rShapeName
,
const
Rectangle
*
pBoundRect
=
0
);
virtual
void
LeaveGroup
();
virtual
void
AddShape
(
sal_uInt32
nShapeType
,
sal_uInt32
nShapeFlags
,
sal_uInt32
nShapeId
=
0
);
...
...
oox/source/export/vmlexport.cxx
Dosyayı görüntüle @
a0d2c3c5
...
...
@@ -99,7 +99,7 @@ void VMLExport::CloseContainer()
EscherEx
::
CloseContainer
();
}
sal_uInt32
VMLExport
::
EnterGroup
(
const
String
&
rShapeName
,
const
Rectangle
*
pRect
)
sal_uInt32
VMLExport
::
EnterGroup
(
const
OU
String
&
rShapeName
,
const
Rectangle
*
pRect
)
{
sal_uInt32
nShapeId
=
GenerateShapeId
();
...
...
@@ -108,8 +108,8 @@ sal_uInt32 VMLExport::EnterGroup( const String& rShapeName, const Rectangle* pRe
pAttrList
->
add
(
XML_id
,
ShapeIdString
(
nShapeId
)
);
if
(
rShapeName
.
Len
()
)
pAttrList
->
add
(
XML_alt
,
OUStringToOString
(
OUString
(
rShapeName
)
,
RTL_TEXTENCODING_UTF8
)
);
if
(
rShapeName
.
getLength
()
)
pAttrList
->
add
(
XML_alt
,
OUStringToOString
(
rShapeName
,
RTL_TEXTENCODING_UTF8
)
);
// style
if
(
pRect
)
...
...
sw/source/filter/ww8/rtfsdrexport.cxx
Dosyayı görüntüle @
a0d2c3c5
...
...
@@ -82,7 +82,7 @@ void RtfSdrExport::CloseContainer()
EscherEx
::
CloseContainer
();
}
sal_uInt32
RtfSdrExport
::
EnterGroup
(
const
String
&
/*rShapeName*/
,
const
Rectangle
*
/*pRect*/
)
sal_uInt32
RtfSdrExport
::
EnterGroup
(
const
OU
String
&
/*rShapeName*/
,
const
Rectangle
*
/*pRect*/
)
{
SAL_INFO
(
"sw.rtf"
,
OSL_THIS_FUNC
);
...
...
sw/source/filter/ww8/rtfsdrexport.hxx
Dosyayı görüntüle @
a0d2c3c5
...
...
@@ -82,7 +82,7 @@ private:
virtual
void
CloseContainer
();
using
EscherEx
::
EnterGroup
;
virtual
sal_uInt32
EnterGroup
(
const
String
&
rShapeName
,
const
Rectangle
*
pBoundRect
=
0
);
virtual
sal_uInt32
EnterGroup
(
const
OU
String
&
rShapeName
,
const
Rectangle
*
pBoundRect
=
0
);
virtual
void
LeaveGroup
();
virtual
void
AddShape
(
sal_uInt32
nShapeType
,
sal_uInt32
nShapeFlags
,
sal_uInt32
nShapeId
=
0
);
...
...
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