summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdattr.cxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-11-18 20:26:56 +0100
committerMichael Stahl <mstahl@redhat.com>2015-11-18 20:41:31 +0100
commit479df22d0b4b0e0393fcf621e7380b38415bcef8 (patch)
treef8e989ae3f590abac8dec488542a39d9db316f62 /svx/source/svdraw/svdattr.cxx
parent392c871cde43e9f5006fecff731628c569f24b10 (diff)
svx: SdrLayerNameItem etc. missing Clone overrides
Change-Id: I26ca8070d9c9607a475267ef8780f9013dfd4dcf
Diffstat (limited to 'svx/source/svdraw/svdattr.cxx')
-rw-r--r--svx/source/svdraw/svdattr.cxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/svx/source/svdraw/svdattr.cxx b/svx/source/svdraw/svdattr.cxx
index 05fe6fe6a277..5f0978d4d136 100644
--- a/svx/source/svdraw/svdattr.cxx
+++ b/svx/source/svdraw/svdattr.cxx
@@ -2277,5 +2277,14 @@ SfxPoolItem* SdrCustomShapeReplacementURLItem::Clone( SfxItemPool*) const
return new SdrCustomShapeReplacementURLItem(*this);
}
+SfxPoolItem* SdrLayerIdItem::Clone(SfxItemPool* /*pPool*/) const
+{
+ return new SdrLayerIdItem(*this);
+}
+
+SfxPoolItem* SdrLayerNameItem::Clone(SfxItemPool* /*pPool*/) const
+{
+ return new SdrLayerNameItem(*this);
+}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */