summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
authorArmin Weiss <aw@openoffice.org>2001-02-15 15:11:33 +0000
committerArmin Weiss <aw@openoffice.org>2001-02-15 15:11:33 +0000
commitbf3786d0382027864a0d57603b6ba67b79f708ca (patch)
tree371900aa1fd957a6929ec63d4e90eec493535d35 /svx/source
parentf8422f78aec808efe673b97ce785fb854cd52e5b (diff)
#81248# added functionality for IsCornerRadiusAllowed() to enable/disable
corner radius fields in the dialog with the normal methods.
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/dialog/transfrm.cxx8
-rw-r--r--svx/source/engine3d/obj3d.cxx5
-rw-r--r--svx/source/svdraw/svdedtv.cxx19
-rw-r--r--svx/source/svdraw/svdedtv1.cxx6
-rw-r--r--svx/source/svdraw/svdobj.cxx5
-rw-r--r--svx/source/svdraw/svdocapt.cxx5
-rw-r--r--svx/source/svdraw/svdocirc.cxx5
-rw-r--r--svx/source/svdraw/svdoedge.cxx5
-rw-r--r--svx/source/svdraw/svdograf.cxx5
-rw-r--r--svx/source/svdraw/svdogrp.cxx7
-rw-r--r--svx/source/svdraw/svdomeas.cxx5
-rw-r--r--svx/source/svdraw/svdoole2.cxx5
-rw-r--r--svx/source/svdraw/svdopage.cxx5
-rw-r--r--svx/source/svdraw/svdopath.cxx5
-rw-r--r--svx/source/svdraw/svdorect.cxx6
-rw-r--r--svx/source/svdraw/svdotext.cxx5
-rw-r--r--svx/source/svdraw/svdouno.cxx5
17 files changed, 67 insertions, 39 deletions
diff --git a/svx/source/dialog/transfrm.cxx b/svx/source/dialog/transfrm.cxx
index 190f172f00b4..38a142c7c707 100644
--- a/svx/source/dialog/transfrm.cxx
+++ b/svx/source/dialog/transfrm.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: transfrm.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: aw $ $Date: 2001-01-17 12:23:45 $
+ * last change: $Author: aw $ $Date: 2001-02-15 16:09:55 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1930,7 +1930,9 @@ void SvxSlantTabPage::Reset( const SfxItemSet& rAttrs )
const SfxPoolItem* pItem;
// Eckenradius
- if( bMarkedObj && SFX_ITEM_DEFAULT == rAttrs.GetItemState( SDRATTR_ECKENRADIUS ) )
+//A if( bMarkedObj && SFX_ITEM_DEFAULT == rAttrs.GetItemState( SDRATTR_ECKENRADIUS ) )
+//A {
+ if( !pView->IsEdgeRadiusAllowed() )
{
aFtRadius.Disable();
aMtrRadius.Disable();
diff --git a/svx/source/engine3d/obj3d.cxx b/svx/source/engine3d/obj3d.cxx
index 27e49d963cf9..17e94f6604f6 100644
--- a/svx/source/engine3d/obj3d.cxx
+++ b/svx/source/engine3d/obj3d.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: obj3d.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: aw $ $Date: 2001-02-09 17:53:12 $
+ * last change: $Author: aw $ $Date: 2001-02-15 16:10:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -443,6 +443,7 @@ void E3dObject::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const
rInfo.bMirror45Allowed = FALSE;
rInfo.bMirror90Allowed = FALSE;
rInfo.bShearAllowed = FALSE;
+ rInfo.bEdgeRadiusAllowed = FALSE;
rInfo.bCanConvToPath = FALSE;
// no transparence for 3d objects
diff --git a/svx/source/svdraw/svdedtv.cxx b/svx/source/svdraw/svdedtv.cxx
index 558da4e72f27..94fd52a87a87 100644
--- a/svx/source/svdraw/svdedtv.cxx
+++ b/svx/source/svdraw/svdedtv.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdedtv.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: aw $ $Date: 2001-01-26 14:08:54 $
+ * 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
@@ -122,12 +122,13 @@ void SdrEditView::ImpResetPossibilityFlags()
bMirrorFreeAllowed =FALSE;
bMirror45Allowed =FALSE;
bMirror90Allowed =FALSE;
- bTransparenceAllowed = FALSE;
- bGradientAllowed = FALSE;
+ bTransparenceAllowed =FALSE;
+ bGradientAllowed =FALSE;
bShearAllowed =FALSE;
+ bEdgeRadiusAllowed =FALSE;
bCanConvToPath =FALSE;
bCanConvToPoly =FALSE;
- bCanConvToContour = FALSE;
+ bCanConvToContour =FALSE;
bCanConvToPathLineToArea=FALSE;
bCanConvToPolyLineToArea=FALSE;
bMoveProtect =FALSE;
@@ -370,6 +371,12 @@ BOOL SdrEditView::IsShearAllowed() const
return bShearAllowed;
}
+BOOL SdrEditView::IsEdgeRadiusAllowed() const
+{
+ ForcePossibilities();
+ return bEdgeRadiusAllowed;
+}
+
BOOL SdrEditView::IsCrookAllowed(BOOL bNoContortion) const
{
// CrookMode fehlt hier (weil kein Rotate bei Shear ...)
@@ -454,6 +461,7 @@ void SdrEditView::CheckPossibilities()
bMirror45Allowed =TRUE;
bMirror90Allowed =TRUE;
bShearAllowed =TRUE;
+ bEdgeRadiusAllowed=FALSE;
bContortionPossible=TRUE;
bCanConvToContour = TRUE;
@@ -507,6 +515,7 @@ void SdrEditView::CheckPossibilities()
if (!aInfo.bMirror45Allowed ) bMirror45Allowed =FALSE;
if (!aInfo.bMirror90Allowed ) bMirror90Allowed =FALSE;
if (!aInfo.bShearAllowed ) bShearAllowed =FALSE;
+ if (aInfo.bEdgeRadiusAllowed) bEdgeRadiusAllowed=TRUE;
if (aInfo.bNoContortion ) bContortionPossible=FALSE;
// Fuer Crook mit Contortion: Alle Objekte muessen
// Movable und Rotatable sein, ausser maximal 1
diff --git a/svx/source/svdraw/svdedtv1.cxx b/svx/source/svdraw/svdedtv1.cxx
index 430443c8dd7c..ca87e41e11e0 100644
--- a/svx/source/svdraw/svdedtv1.cxx
+++ b/svx/source/svdraw/svdedtv1.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdedtv1.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: aw $ $Date: 2001-02-15 14:04:27 $
+ * 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
@@ -1133,7 +1133,7 @@ void SdrEditView::SetGeoAttrToMarked(const SfxItemSet& rAttr)
}
// Eckenradius
- if (SFX_ITEM_SET==rAttr.GetItemState(SDRATTR_ECKENRADIUS,TRUE,&pPoolItem)) {
+ if (bEdgeRadiusAllowed && SFX_ITEM_SET==rAttr.GetItemState(SDRATTR_ECKENRADIUS,TRUE,&pPoolItem)) {
long nRadius=((SdrEckenradiusItem*)pPoolItem)->GetValue();
aSetAttr.Put(SdrEckenradiusItem(nRadius));
bSetAttr=TRUE;
diff --git a/svx/source/svdraw/svdobj.cxx b/svx/source/svdraw/svdobj.cxx
index f9ddb5e8b34f..2f24bf778202 100644
--- a/svx/source/svdraw/svdobj.cxx
+++ b/svx/source/svdraw/svdobj.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdobj.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * 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
@@ -1326,6 +1326,7 @@ void SdrObject::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const
rInfo.bTransparenceAllowed = FALSE;
rInfo.bGradientAllowed = FALSE;
rInfo.bShearAllowed =FALSE;
+ rInfo.bEdgeRadiusAllowed=FALSE;
rInfo.bCanConvToPath =FALSE;
rInfo.bCanConvToPoly =FALSE;
rInfo.bCanConvToContour = FALSE;
diff --git a/svx/source/svdraw/svdocapt.cxx b/svx/source/svdraw/svdocapt.cxx
index 869742abe232..527a59584d5b 100644
--- a/svx/source/svdraw/svdocapt.cxx
+++ b/svx/source/svdraw/svdocapt.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdocapt.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * 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
@@ -314,6 +314,7 @@ void SdrCaptionObj::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const
rInfo.bTransparenceAllowed = FALSE;
rInfo.bGradientAllowed = FALSE;
rInfo.bShearAllowed =FALSE;
+ rInfo.bEdgeRadiusAllowed=FALSE;
rInfo.bCanConvToPath =TRUE;
rInfo.bCanConvToPoly =TRUE;
rInfo.bCanConvToPathLineToArea=FALSE;
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());
diff --git a/svx/source/svdraw/svdoedge.cxx b/svx/source/svdraw/svdoedge.cxx
index 7d490f3ec2db..3e2417d2f0e5 100644
--- a/svx/source/svdraw/svdoedge.cxx
+++ b/svx/source/svdraw/svdoedge.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdoedge.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * 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
@@ -520,6 +520,7 @@ void SdrEdgeObj::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const
rInfo.bTransparenceAllowed = FALSE;
rInfo.bGradientAllowed = FALSE;
rInfo.bShearAllowed =FALSE;
+ rInfo.bEdgeRadiusAllowed=FALSE;
FASTBOOL bCanConv=!HasText() || ImpCanConvTextToCurve();
rInfo.bCanConvToPath=bCanConv;
rInfo.bCanConvToPoly=bCanConv;
diff --git a/svx/source/svdraw/svdograf.cxx b/svx/source/svdraw/svdograf.cxx
index c2b5366c6528..92c419e1c060 100644
--- a/svx/source/svdraw/svdograf.cxx
+++ b/svx/source/svdraw/svdograf.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdograf.cxx,v $
*
- * $Revision: 1.18 $
+ * $Revision: 1.19 $
*
- * 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
@@ -617,6 +617,7 @@ void SdrGrafObj::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const
rInfo.bTransparenceAllowed = FALSE;
rInfo.bGradientAllowed = FALSE;
rInfo.bShearAllowed = FALSE;
+ rInfo.bEdgeRadiusAllowed=FALSE;
rInfo.bCanConvToPath = FALSE;
rInfo.bCanConvToPathLineToArea = FALSE;
rInfo.bCanConvToPolyLineToArea = FALSE;
diff --git a/svx/source/svdraw/svdogrp.cxx b/svx/source/svdraw/svdogrp.cxx
index 281754c8d97b..d5029433aaec 100644
--- a/svx/source/svdraw/svdogrp.cxx
+++ b/svx/source/svdraw/svdogrp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdogrp.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: aw $ $Date: 2001-02-15 14:04:27 $
+ * 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
@@ -621,6 +621,7 @@ void SdrObjGroup::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const
if (!aInfo.bMirror45Allowed ) rInfo.bMirror45Allowed =FALSE;
if (!aInfo.bMirror90Allowed ) rInfo.bMirror90Allowed =FALSE;
if (!aInfo.bShearAllowed ) rInfo.bShearAllowed =FALSE;
+ if (!aInfo.bEdgeRadiusAllowed ) rInfo.bEdgeRadiusAllowed =FALSE;
if (!aInfo.bNoOrthoDesired ) rInfo.bNoOrthoDesired =FALSE;
if (aInfo.bNoContortion ) rInfo.bNoContortion =TRUE;
if (!aInfo.bCanConvToPath ) rInfo.bCanConvToPath =FALSE;
@@ -641,6 +642,7 @@ void SdrObjGroup::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const
rInfo.bTransparenceAllowed = FALSE;
rInfo.bGradientAllowed = FALSE;
rInfo.bShearAllowed =FALSE;
+ rInfo.bEdgeRadiusAllowed=FALSE;
rInfo.bNoContortion =TRUE;
}
if(nObjAnz != 1)
@@ -665,6 +667,7 @@ void SdrObjGroup::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const
rInfo.bMirror45Allowed=FALSE;
rInfo.bMirror90Allowed=FALSE;
rInfo.bShearAllowed=FALSE;
+ rInfo.bShearAllowed=FALSE;
rInfo.bNoContortion=TRUE;
// default: Proportionen beibehalten
rInfo.bNoOrthoDesired=FALSE;
diff --git a/svx/source/svdraw/svdomeas.cxx b/svx/source/svdraw/svdomeas.cxx
index 0dc2c98621cb..7942603cce3a 100644
--- a/svx/source/svdraw/svdomeas.cxx
+++ b/svx/source/svdraw/svdomeas.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdomeas.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * 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
@@ -353,6 +353,7 @@ void SdrMeasureObj::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const
rInfo.bTransparenceAllowed = FALSE;
rInfo.bGradientAllowed = FALSE;
rInfo.bShearAllowed =TRUE;
+ rInfo.bEdgeRadiusAllowed=FALSE;
rInfo.bNoOrthoDesired =TRUE;
rInfo.bNoContortion =FALSE;
rInfo.bCanConvToPath =FALSE;
diff --git a/svx/source/svdraw/svdoole2.cxx b/svx/source/svdraw/svdoole2.cxx
index 61d42b5b3be8..d16b3389ba50 100644
--- a/svx/source/svdraw/svdoole2.cxx
+++ b/svx/source/svdraw/svdoole2.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdoole2.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: dl $ $Date: 2000-11-29 16:41:27 $
+ * 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
@@ -613,6 +613,7 @@ void SdrOle2Obj::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const
rInfo.bTransparenceAllowed = FALSE;
rInfo.bGradientAllowed = FALSE;
rInfo.bShearAllowed =FALSE;
+ rInfo.bEdgeRadiusAllowed=FALSE;
rInfo.bNoOrthoDesired =FALSE;
rInfo.bCanConvToPath =FALSE;
rInfo.bCanConvToPoly =FALSE;
diff --git a/svx/source/svdraw/svdopage.cxx b/svx/source/svdraw/svdopage.cxx
index 2727534d63d1..4a615991257a 100644
--- a/svx/source/svdraw/svdopage.cxx
+++ b/svx/source/svdraw/svdopage.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdopage.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: aw $ $Date: 2001-02-06 12:48:12 $
+ * 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
@@ -235,6 +235,7 @@ void SdrPageObj::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const
rInfo.bTransparenceAllowed = FALSE;
rInfo.bGradientAllowed = FALSE;
rInfo.bShearAllowed =FALSE;
+ rInfo.bEdgeRadiusAllowed=FALSE;
rInfo.bNoOrthoDesired =FALSE;
rInfo.bCanConvToPath =FALSE;
rInfo.bCanConvToPoly =FALSE;
diff --git a/svx/source/svdraw/svdopath.cxx b/svx/source/svdraw/svdopath.cxx
index 0daf59a24a43..1a2fa3380cd8 100644
--- a/svx/source/svdraw/svdopath.cxx
+++ b/svx/source/svdraw/svdopath.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdopath.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: aw $ $Date: 2001-02-05 11:38:42 $
+ * 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
@@ -270,6 +270,7 @@ void SdrPathObj::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const
FASTBOOL bCanConv = !HasText() || ImpCanConvTextToCurve();
FASTBOOL bIsPath = IsBezier() || IsSpline();
+ rInfo.bEdgeRadiusAllowed = FALSE;
rInfo.bCanConvToPath = bCanConv && !bIsPath;
rInfo.bCanConvToPoly = bCanConv && bIsPath;
rInfo.bCanConvToContour = !IsFontwork() && (rInfo.bCanConvToPoly || LineGeometryUsageIsNecessary());
diff --git a/svx/source/svdraw/svdorect.cxx b/svx/source/svdraw/svdorect.cxx
index 712604dc00a7..d424519d6784 100644
--- a/svx/source/svdraw/svdorect.cxx
+++ b/svx/source/svdraw/svdorect.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdorect.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * 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
@@ -221,6 +221,8 @@ void SdrRectObj::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const
rInfo.bGradientAllowed = (eFillStyle == XFILL_GRADIENT);
rInfo.bShearAllowed =bNoTextFrame;
+ rInfo.bEdgeRadiusAllowed=TRUE;
+
FASTBOOL bCanConv=!HasText() || ImpCanConvTextToCurve();
if (bCanConv && !bNoTextFrame && !HasText()) {
bCanConv=HasFill() || HasLine();
diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx
index 1459c837f1bb..4f1ba67e8ae2 100644
--- a/svx/source/svdraw/svdotext.cxx
+++ b/svx/source/svdraw/svdotext.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdotext.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: aw $ $Date: 2001-02-05 11:38:42 $
+ * 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
@@ -444,6 +444,7 @@ void SdrTextObj::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const
XFillStyle eFillStyle = ((XFillStyleItem&)(GetItem(XATTR_FILLSTYLE))).GetValue();
rInfo.bGradientAllowed = (eFillStyle == XFILL_GRADIENT);
rInfo.bShearAllowed =bNoTextFrame;
+ rInfo.bEdgeRadiusAllowed=TRUE;
FASTBOOL bCanConv=ImpCanConvTextToCurve();
rInfo.bCanConvToPath =bCanConv;
rInfo.bCanConvToPoly =bCanConv;
diff --git a/svx/source/svdraw/svdouno.cxx b/svx/source/svdraw/svdouno.cxx
index cda56333c4ed..29c14e606536 100644
--- a/svx/source/svdraw/svdouno.cxx
+++ b/svx/source/svdraw/svdouno.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdouno.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: aw $ $Date: 2001-01-26 14:08:54 $
+ * 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
@@ -216,6 +216,7 @@ void SdrUnoObj::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const
rInfo.bTransparenceAllowed = FALSE;
rInfo.bGradientAllowed = FALSE;
rInfo.bShearAllowed = FALSE;
+ rInfo.bEdgeRadiusAllowed = FALSE;
rInfo.bNoOrthoDesired = FALSE;
rInfo.bCanConvToPath = FALSE;
rInfo.bCanConvToPoly = FALSE;