diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:09:15 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:09:15 +0000 |
commit | db7dc246d9dbc63f3239a9ebf4b90b1c7ba5d379 (patch) | |
tree | 1e6afadd71f2b9b600f53d0da06007238b18b6bf | |
parent | d6224d1dab1aa0a69b3f276550105290bd1df0fe (diff) |
INTEGRATION: CWS pj65 (1.58.50); FILE MERGED
2006/11/06 11:14:24 pjanik 1.58.50.1: #i71027#: Prevent warnings on Mac OS X.
-rw-r--r-- | svx/source/form/fmctrler.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/form/fmctrler.cxx b/svx/source/form/fmctrler.cxx index eff8571259f4..27d2028302ef 100644 --- a/svx/source/form/fmctrler.cxx +++ b/svx/source/form/fmctrler.cxx @@ -4,9 +4,9 @@ * * $RCSfile: fmctrler.cxx,v $ * - * $Revision: 1.59 $ + * $Revision: 1.60 $ * - * last change: $Author: ihi $ $Date: 2006-11-14 13:24:06 $ + * last change: $Author: vg $ $Date: 2006-11-21 17:09:15 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -2192,7 +2192,7 @@ void FmXFormController::loaded(const EventObject& rEvent) throw( RuntimeExceptio if (xSet.is()) { Any aVal = xSet->getPropertyValue(FM_PROP_CYCLE); - sal_Int32 aVal2; + sal_Int32 aVal2 = 0; ::cppu::enum2int(aVal2,aVal); m_bCycle = !aVal.hasValue() || aVal2 == TabulatorCycle_RECORDS; m_bCanUpdate = aStaticTools.canUpdate(xSet); |