diff options
author | Oliver Bolte <obo@openoffice.org> | 2007-03-07 12:13:24 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2007-03-07 12:13:24 +0000 |
commit | 74302e5d10658ff1f30f66d0c9c82750b3a86067 (patch) | |
tree | 380fa0ea5afc8606b6243f083f7b7dee2da3a8d9 /comphelper | |
parent | 393c1f570e8daa58c11aea2ff8d63ce5d9b716f7 (diff) |
INTEGRATION: CWS pj73 (1.13.48); FILE MERGED
2007/02/24 16:33:47 pjanik 1.13.48.1: #i74838#: Initialize variable to prevent warnings.
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/accessiblewrapper.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/comphelper/source/misc/accessiblewrapper.cxx b/comphelper/source/misc/accessiblewrapper.cxx index 7049d319336c..ca5cd1f8f1c1 100644 --- a/comphelper/source/misc/accessiblewrapper.cxx +++ b/comphelper/source/misc/accessiblewrapper.cxx @@ -4,9 +4,9 @@ * * $RCSfile: accessiblewrapper.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: obo $ $Date: 2006-09-17 17:09:16 $ + * last change: $Author: obo $ $Date: 2007-03-07 13:13:24 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -490,7 +490,7 @@ namespace comphelper if ( AccessibleEventId::STATE_CHANGED == _rEvent.EventId ) { sal_Bool bChildTransienceChanged = sal_False; - sal_Int16 nChangeState; + sal_Int16 nChangeState = 0; if ( _rEvent.OldValue >>= nChangeState ) bChildTransienceChanged = bChildTransienceChanged || AccessibleStateType::MANAGES_DESCENDANTS == nChangeState; if ( _rEvent.NewValue >>= nChangeState ) |