summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdedtv1.cxx
diff options
context:
space:
mode:
authorArmin Weiss <aw@openoffice.org>2001-02-15 13:04:27 +0000
committerArmin Weiss <aw@openoffice.org>2001-02-15 13:04:27 +0000
commitfb59c49f875805fb56f877af27386305567651df (patch)
tree6ed453c8eea74dca658f14bd6c62db9d2510c0a1 /svx/source/svdraw/svdedtv1.cxx
parent84eca7d7c3824245b2ee4e0f490834ddf6c37051 (diff)
#81248# had to take back these changes, defaults are not allowed to
be given back in GetAttrFromMarked(...)
Diffstat (limited to 'svx/source/svdraw/svdedtv1.cxx')
-rw-r--r--svx/source/svdraw/svdedtv1.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/svdraw/svdedtv1.cxx b/svx/source/svdraw/svdedtv1.cxx
index a356740055ed..430443c8dd7c 100644
--- a/svx/source/svdraw/svdedtv1.cxx
+++ b/svx/source/svdraw/svdedtv1.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdedtv1.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: aw $ $Date: 2001-02-08 10:43:05 $
+ * last change: $Author: aw $ $Date: 2001-02-15 14:04:27 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -712,12 +712,12 @@ void SdrEditView::MergeAttrFromMarked(SfxItemSet& rAttr, BOOL bOnlyHardAttr) con
if(SFX_ITEM_DONTCARE == rSet.GetItemState(nWhich, FALSE))
rAttr.InvalidateItem(nWhich);
else
- rAttr.MergeValue(rSet.Get(nWhich), FALSE);
+ rAttr.MergeValue(rSet.Get(nWhich), TRUE);
}
else if(SFX_ITEM_SET == rSet.GetItemState(nWhich, FALSE))
{
const SfxPoolItem& rItem = rSet.Get(nWhich);
- rAttr.MergeValue(rItem, FALSE);
+ rAttr.MergeValue(rItem, TRUE);
}
nWhich = aIter.NextWhich();