summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-06-13 09:31:04 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-06-13 09:31:04 +0000
commit1d793bd4540d942516cbab3872df3119dfc65df4 (patch)
tree81ecb31dae64e075202036cd2bdc23da81e775b3 /sw
parentf116463dc1634a570d71e0965fee50b5ccef101f (diff)
INTEGRATION: CWS swlists01 (1.78.132); FILE MERGED
2008/05/08 16:29:18 od 1.78.132.3: RESYNC: (1.79-1.80); FILE MERGED 2008/03/20 14:20:21 od 1.78.132.2: RESYNC: (1.78-1.79); FILE MERGED 2008/03/06 10:02:09 od 1.78.132.1: #i86732# - refactoring due to revised <SwTxtNode> interface - refactoring due to revised <SwFmt> interface
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/unocore/unodraw.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/source/core/unocore/unodraw.cxx b/sw/source/core/unocore/unodraw.cxx
index 6d46e77b8276..855448dfe098 100644
--- a/sw/source/core/unocore/unodraw.cxx
+++ b/sw/source/core/unocore/unodraw.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: unodraw.cxx,v $
- * $Revision: 1.80 $
+ * $Revision: 1.81 $
*
* This file is part of OpenOffice.org.
*
@@ -1101,7 +1101,7 @@ void SwXShape::setPropertyValue(const rtl::OUString& rPropertyName, const uno::A
aAnchor.SetAnchor(&aPos);
aAnchor.SetType(FLY_AT_FLY);
aItemSet.Put(aAnchor);
- pFmt->SetAttr(aItemSet);
+ pFmt->SetFmtAttr(aItemSet);
bDone = sal_True;
}
}
@@ -1178,7 +1178,7 @@ void SwXShape::setPropertyValue(const rtl::OUString& rPropertyName, const uno::A
{
aAnchor.SetAnchor( pInternalPam->GetPoint() );
aSet.Put(aAnchor);
- pFmt->SetAttr(aSet);
+ pFmt->SetFmtAttr(aSet);
}
}
else
@@ -1213,7 +1213,7 @@ void SwXShape::setPropertyValue(const rtl::OUString& rPropertyName, const uno::A
else
{
aPropSet.setPropertyValue(*pMap, aValue, aSet);
- pFmt->SetAttr(aSet);
+ pFmt->SetFmtAttr(aSet);
}
}
else
@@ -1272,7 +1272,7 @@ void SwXShape::setPropertyValue(const rtl::OUString& rPropertyName, const uno::A
//anchor position has to be inserted after the text attribute has been inserted
aNewAnchor.SetAnchor( aPam.GetPoint() );
aSet.Put( aNewAnchor );
- pFmt->SetAttr(aSet);
+ pFmt->SetFmtAttr(aSet);
bSetAttr = false;
if( text::TextContentAnchorType_AS_CHARACTER == eNewAnchor &&
FLY_IN_CNTNT != eOldAnchorId )
@@ -1287,10 +1287,10 @@ void SwXShape::setPropertyValue(const rtl::OUString& rPropertyName, const uno::A
}
}
if( bSetAttr )
- pFmt->SetAttr(aSet);
+ pFmt->SetFmtAttr(aSet);
}
else
- pFmt->SetAttr(aSet);
+ pFmt->SetFmtAttr(aSet);
}
}
else