diff options
author | Armin Weiss <aw@openoffice.org> | 2001-02-15 15:11:33 +0000 |
---|---|---|
committer | Armin Weiss <aw@openoffice.org> | 2001-02-15 15:11:33 +0000 |
commit | bf3786d0382027864a0d57603b6ba67b79f708ca (patch) | |
tree | 371900aa1fd957a6929ec63d4e90eec493535d35 /svx/source/svdraw/svdocirc.cxx | |
parent | f8422f78aec808efe673b97ce785fb854cd52e5b (diff) |
#81248# added functionality for IsCornerRadiusAllowed() to enable/disable
corner radius fields in the dialog with the normal methods.
Diffstat (limited to 'svx/source/svdraw/svdocirc.cxx')
-rw-r--r-- | svx/source/svdraw/svdocirc.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdocirc.cxx b/svx/source/svdraw/svdocirc.cxx index d92c4cf225f5..f11a75aead28 100644 --- a/svx/source/svdraw/svdocirc.cxx +++ b/svx/source/svdraw/svdocirc.cxx @@ -2,9 +2,9 @@ * * $RCSfile: svdocirc.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: aw $ $Date: 2001-02-09 17:54:43 $ + * last change: $Author: aw $ $Date: 2001-02-15 16:11:33 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -182,6 +182,7 @@ SdrCircObj::~SdrCircObj() void SdrCircObj::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const { FASTBOOL bCanConv=!HasText() || ImpCanConvTextToCurve(); + rInfo.bEdgeRadiusAllowed = FALSE; rInfo.bCanConvToPath=bCanConv; rInfo.bCanConvToPoly=bCanConv; rInfo.bCanConvToContour = !IsFontwork() && (rInfo.bCanConvToPoly || LineGeometryUsageIsNecessary()); |