diff options
author | Andras Timar <andras.timar@collabora.com> | 2015-06-12 13:30:59 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2015-06-12 13:03:42 +0000 |
commit | 7dee641f675e7f472f5bec39cb92a1422fd1ffee (patch) | |
tree | f6d7d95f67ee91afaa0963b1615815a3992c2e32 /oox | |
parent | 1d028d4783da69c5c0e6e0b59e0f8ac55eb9d2b1 (diff) |
tdf#92001 'Handles' contains array of PropertyValues
Change-Id: I17ea45f2b1dd46a7f1c0f3ce8c680bef9ec533fa
Reviewed-on: https://gerrit.libreoffice.org/16249
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Tested-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/export/shapes.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/oox/source/export/shapes.cxx b/oox/source/export/shapes.cxx index 0f2b9ed3e945..5645cca330e6 100644 --- a/oox/source/export/shapes.cxx +++ b/oox/source/export/shapes.cxx @@ -36,6 +36,7 @@ #include <com/sun/star/awt/FontWeight.hpp> #include <com/sun/star/awt/FontUnderline.hpp> #include <com/sun/star/awt/Gradient.hpp> +#include <com/sun/star/beans/PropertyValues.hpp> #include <com/sun/star/beans/XPropertySet.hpp> #include <com/sun/star/beans/XPropertySetInfo.hpp> #include <com/sun/star/beans/XPropertyState.hpp> @@ -423,7 +424,7 @@ ShapeExport& ShapeExport::WriteCustomShape( Reference< XShape > xShape ) nAdjustmentValuesIndex = i; else if ( rProp.Name == "Handles" ) { - uno::Sequence<beans::PropertyValue> aHandles; + uno::Sequence<beans::PropertyValues> aHandles; rProp.Value >>= aHandles; if ( aHandles.getLength() ) bHasHandles = true; |