diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-01-28 13:01:46 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-01-28 13:01:46 +0000 |
commit | 09859c732d6c329c86f23f4c03a500436ef1e6c4 (patch) | |
tree | ae50d77b696a0014f0457b78ab7abae94723f851 /stoc | |
parent | 45e7094e78957c4719366d688406b3da18fb01a8 (diff) |
INTEGRATION: CWS ab42 (1.23.50); FILE MERGED
2008/01/02 12:51:29 ab 1.23.50.1: #i77442# Drop L for integer literals to solve 64 type problem
Diffstat (limited to 'stoc')
-rw-r--r-- | stoc/source/inspect/introspection.cxx | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/stoc/source/inspect/introspection.cxx b/stoc/source/inspect/introspection.cxx index 369c99283573..1f0489146dcf 100644 --- a/stoc/source/inspect/introspection.cxx +++ b/stoc/source/inspect/introspection.cxx @@ -4,9 +4,9 @@ * * $RCSfile: introspection.cxx,v $ * - * $Revision: 1.23 $ + * $Revision: 1.24 $ * - * last change: $Author: obo $ $Date: 2006-09-16 17:29:49 $ + * last change: $Author: vg $ $Date: 2008-01-28 14:01:46 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -337,17 +337,17 @@ IntrospectionAccessStatic_Impl::IntrospectionAccessStatic_Impl( Reference< XIdlR mbFastPropSet = sal_False; mpOrgPropertyHandleArray = NULL; - mnPropCount = 0L; - //mnDangerousPropCount = 0L; - mnPropertySetPropCount = 0L; - mnAttributePropCount = 0L; - mnMethodPropCount = 0L; + mnPropCount = 0; + //mnDangerousPropCount = 0; + mnPropertySetPropCount = 0; + mnAttributePropCount = 0; + mnMethodPropCount = 0; // Method-Daten - mnMethCount = 0L; + mnMethCount = 0; // Eigenens RefCounting - nRefCount = 0L; + nRefCount = 0; } // Von Hand refcounten !!! @@ -2356,8 +2356,8 @@ IntrospectionAccessStatic_Impl* ImplIntrospection::implInspect(const Any& aToIns //if( xClassProvider.is() ) { // Indizes in die Export-Tabellen - sal_Int32 iAllExportedMethod = 0L; - sal_Int32 iAllSupportedListener = 0L; + sal_Int32 iAllExportedMethod = 0; + sal_Int32 iAllSupportedListener = 0; // Hashtable fuer Pruefung auf mehrfache Beruecksichtigung von Interfaces CheckedInterfacesMap aCheckedInterfacesMap; @@ -2476,7 +2476,7 @@ IntrospectionAccessStatic_Impl* ImplIntrospection::implInspect(const Any& aToIns // 3. Methoden // Zaehler fuer die gefundenen Listener - sal_Int32 nListenerCount = 0L; + sal_Int32 nListenerCount = 0; // Alle Methoden holen und merken Sequence< Reference<XIdlMethod> > methods = rxIfaceClass->getMethods(); @@ -2852,8 +2852,8 @@ IntrospectionAccessStatic_Impl* ImplIntrospection::implInspect(const Any& aToIns // 4. Methoden in die Gesamt-Sequence uebernehmen // Wieviele Methoden muessen in die Method-Sequence? - sal_Int32 nExportedMethodCount = 0L; - sal_Int32 nSupportedListenerCount = 0L; + sal_Int32 nExportedMethodCount = 0; + sal_Int32 nSupportedListenerCount = 0; for( i = 0 ; i < nSourceMethodCount ; i++ ) { if( pMethodTypes[ i ] != INVALID_METHOD ) |