summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <cmc@openoffice.org>2002-02-19 11:59:37 +0000
committerCaolán McNamara <cmc@openoffice.org>2002-02-19 11:59:37 +0000
commit77f72b46cd44978b462b1df2346642b73e5cc7ab (patch)
tree578897c979b43f1756898a3890e77e8ac8fbc98a
parent988815afc2eec0a8e9d2d47fa72dadb5c16b13a6 (diff)
#96678# twilight zone checkin fixed
-rw-r--r--svx/source/msfilter/eschesdo.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/svx/source/msfilter/eschesdo.cxx b/svx/source/msfilter/eschesdo.cxx
index c65ac3b2b598..915397e12d23 100644
--- a/svx/source/msfilter/eschesdo.cxx
+++ b/svx/source/msfilter/eschesdo.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: eschesdo.cxx,v $
*
- * $Revision: 1.16 $
+ * $Revision: 1.17 $
*
- * last change: $Author: cmc $ $Date: 2002-02-15 12:38:06 $
+ * last change: $Author: cmc $ $Date: 2002-02-19 12:59:37 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -226,7 +226,6 @@ void ImplEESdrWriter::ImplWriteTextBundle( ImplEESdrObject& rObj, EscherProperty
ESCHER_AnchorText eAnchor = ESCHER_AnchorTop;
ESCHER_txfl eFlow = ESCHER_txflHorzN;
ESCHER_txDir eDir = ESCHER_txdirLTR;
- eDir =
UINT32 nTextAttr = 0x40004; // rotate text with shape
if ( rObj.ImplGetPropertyValue(
@@ -236,17 +235,18 @@ void ImplEESdrWriter::ImplWriteTextBundle( ImplEESdrObject& rObj, EscherProperty
rObj.GetUsrAny() >>= eMode;
switch (eMode)
{
- case ::com::sun::star::text::WritingMode_TB_RL)
- //Well if it so happens that we are fliped 180 we can use this
- //instead.
+ case ::com::sun::star::text::WritingMode_TB_RL:
+ //Well if it so happens that we are fliped 180 we can use
+ //this instead.
if (rObj.GetAngle() == 18000)
eFlow = ESCHER_txflBtoT;
else
eFlow = ESCHER_txflTtoBA;
break;
- case ::com::sun::star::text::WritingMode_RL_TB)
+ case ::com::sun::star::text::WritingMode_RL_TB:
eDir = ESCHER_txdirRTL;
break;
+ }
}
if ( rObj.ImplGetPropertyValue( ::rtl::OUString::createFromAscii("TextVerticalAdjust") ) )