summaryrefslogtreecommitdiff
path: root/oox/inc
diff options
context:
space:
mode:
authorMuthu Subramanian <sumuthu@suse.com>2012-02-14 19:49:31 +0530
committerMuthu Subramanian <sumuthu@suse.com>2012-02-14 19:50:40 +0530
commit8167b8f3d9ca506a30bd8454d934d713033cb8b4 (patch)
tree8fb620f1bf32db36ccfa15bb50c41161d0be1c14 /oox/inc
parentcc459ea8c1d2d398c0bad5e52591af93ebc4db38 (diff)
n744510: Improved 'vert' text imports.
Diffstat (limited to 'oox/inc')
-rw-r--r--oox/inc/oox/drawingml/textbodyproperties.hxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/oox/inc/oox/drawingml/textbodyproperties.hxx b/oox/inc/oox/drawingml/textbodyproperties.hxx
index a1b914ac3bb1..e155d3082a6d 100644
--- a/oox/inc/oox/drawingml/textbodyproperties.hxx
+++ b/oox/inc/oox/drawingml/textbodyproperties.hxx
@@ -29,6 +29,7 @@
#ifndef OOX_DRAWINGML_TEXTBODYPROPERTIES_HXX
#define OOX_DRAWINGML_TEXTBODYPROPERTIES_HXX
+#include <com/sun/star/drawing/TextVerticalAdjust.hpp>
#include "oox/helper/helper.hxx"
#include "oox/helper/propertymap.hxx"
@@ -39,13 +40,15 @@ namespace drawingml {
struct TextBodyProperties
{
- PropertyMap maPropertyMap;
- OptValue< sal_Int32 > moRotation;
- OptValue< sal_Int32 > moVert;
+ PropertyMap maPropertyMap;
+ OptValue< sal_Int32 > moRotation;
+ OptValue< sal_Int32 > moVert;
+ ::com::sun::star::drawing::TextVerticalAdjust meVA;
explicit TextBodyProperties();
void pushToPropMap( PropertyMap& rPropMap ) const;
+ void pushVertSimulation();
};
// ============================================================================