summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2016-01-25 09:14:05 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-01-25 09:14:43 +0100
commite3b0d5987b817af86e2ecb3616b8d1bde306ba08 (patch)
treed5533c403e0ddb1984e2d4465a476c3b865532ae /include
parented65e53f749611e9acc9684e4ce4c58ef14dc81f (diff)
svx: SdrEdgeLineDeltaAnzItem -> SdrEdgeLineDeltaCountItem
Change-Id: I91791a3ea21ca7a68d4d1aa49e29cabc38c777ee
Diffstat (limited to 'include')
-rw-r--r--include/svx/sxelditm.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/sxelditm.hxx b/include/svx/sxelditm.hxx
index db37bcaaf4a4..b27e9c117ea5 100644
--- a/include/svx/sxelditm.hxx
+++ b/include/svx/sxelditm.hxx
@@ -23,13 +23,13 @@
#include <svx/sdmetitm.hxx>
#include <svx/svxdllapi.h>
-class SdrEdgeLineDeltaAnzItem: public SfxUInt16Item {
+class SdrEdgeLineDeltaCountItem: public SfxUInt16Item {
public:
- SdrEdgeLineDeltaAnzItem(sal_uInt16 nVal=0): SfxUInt16Item(SDRATTR_EDGELINEDELTAANZ,nVal) {}
- SdrEdgeLineDeltaAnzItem(SvStream& rIn): SfxUInt16Item(SDRATTR_EDGELINEDELTAANZ,rIn) {}
+ SdrEdgeLineDeltaCountItem(sal_uInt16 nVal=0): SfxUInt16Item(SDRATTR_EDGELINEDELTAANZ,nVal) {}
+ SdrEdgeLineDeltaCountItem(SvStream& rIn): SfxUInt16Item(SDRATTR_EDGELINEDELTAANZ,rIn) {}
virtual SfxPoolItem* Clone(SfxItemPool*) const override
{
- return new SdrEdgeLineDeltaAnzItem(*this);
+ return new SdrEdgeLineDeltaCountItem(*this);
}
};