summaryrefslogtreecommitdiff
path: root/svx/source/items
diff options
context:
space:
mode:
authorJoseph Powers <jpowers27@cox.net>2010-12-26 05:41:56 -0800
committerJoseph Powers <jpowers27@cox.net>2010-12-26 05:41:56 -0800
commitf31cba4683f47be9fcff07e088bd73e0bed36dfe (patch)
tree74f83a131ea4054770feb30a780babf45201e829 /svx/source/items
parente20633dc65b81e5f77d7e8a0c8e2e5aa21957a06 (diff)
Fix a compile time warning: un-initialized variable.
Diffstat (limited to 'svx/source/items')
-rw-r--r--svx/source/items/rotmodit.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/items/rotmodit.cxx b/svx/source/items/rotmodit.cxx
index 1c3dbf5f0e5a..502ee16bdfa7 100644
--- a/svx/source/items/rotmodit.cxx
+++ b/svx/source/items/rotmodit.cxx
@@ -150,7 +150,7 @@ bool SvxRotateModeItem::QueryValue( uno::Any& rVal, BYTE /*nMemberId*/ ) const
bool SvxRotateModeItem::PutValue( const uno::Any& rVal, BYTE /*nMemberId*/ )
{
- sal_Int32 nUno;
+ sal_Int32 nUno(0);
if(!(rVal >>= nUno))
{
nUno = table::CellVertJustify2::STANDARD;