Kaydet (Commit) 8b20ba85 authored tarafından Vladimir Glazounov's avatar Vladimir Glazounov

INTEGRATION: CWS pj65 (1.13.50); FILE MERGED

2006/11/06 11:14:25 pjanik 1.13.50.1: #i71027#: Prevent warnings on Mac OS X.
üst 93df743b
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
* *
* $RCSfile: chrtitem.cxx,v $ * $RCSfile: chrtitem.cxx,v $
* *
* $Revision: 1.13 $ * $Revision: 1.14 $
* *
* last change: $Author: obo $ $Date: 2006-10-12 12:52:56 $ * last change: $Author: vg $ $Date: 2006-11-21 17:09:39 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
...@@ -258,7 +258,7 @@ sal_Bool SvxChartTextOrderItem::PutValue( const ::com::sun::star::uno::Any& rVal ...@@ -258,7 +258,7 @@ sal_Bool SvxChartTextOrderItem::PutValue( const ::com::sun::star::uno::Any& rVal
if(!(rVal >>= eAO)) if(!(rVal >>= eAO))
{ {
// also try an int (for Basic) // also try an int (for Basic)
sal_Int32 nAO; sal_Int32 nAO = 0;
if(!(rVal >>= nAO)) if(!(rVal >>= nAO))
return sal_False; return sal_False;
eAO = static_cast< ::com::sun::star::chart::ChartAxisArrangeOrderType >( nAO ); eAO = static_cast< ::com::sun::star::chart::ChartAxisArrangeOrderType >( nAO );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment