Kaydet (Commit) eb0da375 authored tarafından Caolán McNamara's avatar Caolán McNamara

crashtesting: ooo55544-2.sxi, etc. missing Clones

Change-Id: I3e1b8f78289500bad8013e858f9abf03ab14914a
üst ce91f3c1
......@@ -37,6 +37,10 @@ class SdrCaptionAngleItem: public SdrAngleItem {
public:
SdrCaptionAngleItem(long nAngle=0): SdrAngleItem(SDRATTR_CAPTIONANGLE,nAngle) {}
SdrCaptionAngleItem(SvStream& rIn): SdrAngleItem(SDRATTR_CAPTIONANGLE,rIn) {}
virtual SfxPoolItem* Clone(SfxItemPool*) const override
{
return new SdrCaptionAngleItem(*this);
}
};
#endif
......
......@@ -30,6 +30,10 @@ class SdrCaptionGapItem: public SdrMetricItem {
public:
SdrCaptionGapItem(long nGap=0) : SdrMetricItem(SDRATTR_CAPTIONGAP,nGap) {}
SdrCaptionGapItem(SvStream& rIn): SdrMetricItem(SDRATTR_CAPTIONGAP,rIn) {}
virtual SfxPoolItem* Clone(SfxItemPool*) const override
{
return new SdrCaptionGapItem(*this);
}
};
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment