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
d19609e1
Kaydet (Commit)
d19609e1
authored
Eyl 01, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Missing Clone overrides
Change-Id: I0dda3dc849fce9ba994baa82f7e25497ea995c75
üst
e62ec6d0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
2 deletions
+30
-2
svx3ditems.hxx
include/svx/svx3ditems.hxx
+6
-0
svx3ditems.cxx
svx/source/engine3d/svx3ditems.cxx
+24
-2
No files found.
include/svx/svx3ditems.hxx
Dosyayı görüntüle @
d19609e1
...
...
@@ -65,6 +65,7 @@ public:
Svx3DReducedLineGeometryItem
(
bool
bVal
=
false
);
virtual
SfxPoolItem
*
Create
(
SvStream
&
rIn
,
sal_uInt16
nItemVersion
)
const
SAL_OVERRIDE
;
virtual
sal_uInt16
GetVersion
(
sal_uInt16
nFileFormatVersion
)
const
SAL_OVERRIDE
;
SfxPoolItem
*
Clone
(
SfxItemPool
*
)
const
SAL_OVERRIDE
;
};
class
SVX_DLLPUBLIC
Svx3DNormalsKindItem
:
public
SfxUInt16Item
{
...
...
@@ -309,6 +310,7 @@ public:
Svx3DSmoothNormalsItem
(
bool
bVal
=
true
);
virtual
SfxPoolItem
*
Create
(
SvStream
&
rIn
,
sal_uInt16
nItemVersion
)
const
SAL_OVERRIDE
;
virtual
sal_uInt16
GetVersion
(
sal_uInt16
nFileFormatVersion
)
const
SAL_OVERRIDE
;
SfxPoolItem
*
Clone
(
SfxItemPool
*
)
const
SAL_OVERRIDE
;
};
// #107245# Item to replace bExtrudeSmoothFrontBack and bLatheSmoothFrontBack
...
...
@@ -317,6 +319,7 @@ public:
Svx3DSmoothLidsItem
(
bool
bVal
=
false
);
virtual
SfxPoolItem
*
Create
(
SvStream
&
rIn
,
sal_uInt16
nItemVersion
)
const
SAL_OVERRIDE
;
virtual
sal_uInt16
GetVersion
(
sal_uInt16
nFileFormatVersion
)
const
SAL_OVERRIDE
;
SfxPoolItem
*
Clone
(
SfxItemPool
*
)
const
SAL_OVERRIDE
;
};
// #107245# Item to replace bExtrudeCharacterMode and bLatheCharacterMode
...
...
@@ -325,6 +328,7 @@ public:
Svx3DCharacterModeItem
(
bool
bVal
=
false
);
virtual
SfxPoolItem
*
Create
(
SvStream
&
rIn
,
sal_uInt16
nItemVersion
)
const
SAL_OVERRIDE
;
virtual
sal_uInt16
GetVersion
(
sal_uInt16
nFileFormatVersion
)
const
SAL_OVERRIDE
;
SfxPoolItem
*
Clone
(
SfxItemPool
*
)
const
SAL_OVERRIDE
;
};
// #107245# Item to replace bExtrudeCloseFront and bLatheCloseFront
...
...
@@ -333,6 +337,7 @@ public:
Svx3DCloseFrontItem
(
bool
bVal
=
true
);
SVX_DLLPRIVATE
virtual
SfxPoolItem
*
Create
(
SvStream
&
rIn
,
sal_uInt16
nItemVersion
)
const
SAL_OVERRIDE
;
SVX_DLLPRIVATE
virtual
sal_uInt16
GetVersion
(
sal_uInt16
nFileFormatVersion
)
const
SAL_OVERRIDE
;
SfxPoolItem
*
Clone
(
SfxItemPool
*
)
const
SAL_OVERRIDE
;
};
// #107245# Item to replace bExtrudeCloseBack and bLatheCloseBack
...
...
@@ -341,6 +346,7 @@ public:
Svx3DCloseBackItem
(
bool
bVal
=
true
);
SVX_DLLPRIVATE
virtual
SfxPoolItem
*
Create
(
SvStream
&
rIn
,
sal_uInt16
nItemVersion
)
const
SAL_OVERRIDE
;
SVX_DLLPRIVATE
virtual
sal_uInt16
GetVersion
(
sal_uInt16
nFileFormatVersion
)
const
SAL_OVERRIDE
;
SfxPoolItem
*
Clone
(
SfxItemPool
*
)
const
SAL_OVERRIDE
;
};
#endif // INCLUDED_SVX_SVX3DITEMS_HXX
...
...
svx/source/engine3d/svx3ditems.cxx
Dosyayı görüntüle @
d19609e1
...
...
@@ -56,7 +56,10 @@ SfxPoolItem* Svx3DReducedLineGeometryItem::Create(SvStream& rIn, sal_uInt16 nIte
return
pRetval
;
}
SfxPoolItem
*
Svx3DReducedLineGeometryItem
::
Clone
(
SfxItemPool
*
)
const
{
return
new
Svx3DReducedLineGeometryItem
(
*
this
);
}
Svx3DNormalsKindItem
::
Svx3DNormalsKindItem
(
sal_uInt16
nVal
)
:
SfxUInt16Item
(
SDRATTR_3DOBJ_NORMALS_KIND
,
nVal
)
...
...
@@ -191,6 +194,10 @@ SfxPoolItem* Svx3DSmoothNormalsItem::Create(SvStream& rIn, sal_uInt16 nItemVersi
return
pRetval
;
}
SfxPoolItem
*
Svx3DSmoothNormalsItem
::
Clone
(
SfxItemPool
*
)
const
{
return
new
Svx3DSmoothNormalsItem
(
*
this
);
}
// #107245#
...
...
@@ -216,6 +223,10 @@ SfxPoolItem* Svx3DSmoothLidsItem::Create(SvStream& rIn, sal_uInt16 nItemVersion)
return
pRetval
;
}
SfxPoolItem
*
Svx3DSmoothLidsItem
::
Clone
(
SfxItemPool
*
)
const
{
return
new
Svx3DSmoothLidsItem
(
*
this
);
}
// #107245#
...
...
@@ -241,6 +252,10 @@ SfxPoolItem* Svx3DCharacterModeItem::Create(SvStream& rIn, sal_uInt16 nItemVersi
return
pRetval
;
}
SfxPoolItem
*
Svx3DCharacterModeItem
::
Clone
(
SfxItemPool
*
)
const
{
return
new
Svx3DCharacterModeItem
(
*
this
);
}
// #107245#
...
...
@@ -266,6 +281,10 @@ SfxPoolItem* Svx3DCloseFrontItem::Create(SvStream& rIn, sal_uInt16 nItemVersion)
return
pRetval
;
}
SfxPoolItem
*
Svx3DCloseFrontItem
::
Clone
(
SfxItemPool
*
)
const
{
return
new
Svx3DCloseFrontItem
(
*
this
);
}
// #107245#
...
...
@@ -291,7 +310,10 @@ SfxPoolItem* Svx3DCloseBackItem::Create(SvStream& rIn, sal_uInt16 nItemVersion)
return
pRetval
;
}
SfxPoolItem
*
Svx3DCloseBackItem
::
Clone
(
SfxItemPool
*
)
const
{
return
new
Svx3DCloseBackItem
(
*
this
);
}
// Svx3DNormalsKindItem: use drawing::NormalsKind
bool
Svx3DNormalsKindItem
::
QueryValue
(
uno
::
Any
&
rVal
,
sal_uInt8
/*nMemberId*/
)
const
...
...
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