summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-11-22 19:52:41 +0100
committerEike Rathke <erack@redhat.com>2013-11-22 19:53:06 +0100
commit44397a6f36ae6db697899c4595afe617e5fbe8ca (patch)
tree018ad10bd8d1d2af2624fcc169adb5d469f604fb /writerfilter
parentb0b3748db771459a558d49e63d93d1fd154e4f29 (diff)
init nRotation [-Werror=maybe-uninitialized]
Change-Id: Ia48c8e3ef9dfb1f1f881845813ada518231352f2
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/dmapper/GraphicImport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/writerfilter/source/dmapper/GraphicImport.cxx b/writerfilter/source/dmapper/GraphicImport.cxx
index cdd9e01d2a8d..c0fa4b853f6e 100644
--- a/writerfilter/source/dmapper/GraphicImport.cxx
+++ b/writerfilter/source/dmapper/GraphicImport.cxx
@@ -909,7 +909,7 @@ void GraphicImport::lcl_attribute(Id nName, Value & val)
OUString sUrl;
xShapeProps->getPropertyValue("GraphicURL") >>= sUrl;
- sal_Int32 nRotation;
+ sal_Int32 nRotation = 0;
xShapeProps->getPropertyValue("RotateAngle") >>= nRotation;
::com::sun::star::beans::PropertyValues aMediaProperties( 1 );