summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-03-31 08:09:45 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-03-31 08:09:45 +0000
commitf556824e6df5c0e89e7b64c632e62bfe7c0d18c3 (patch)
tree136e9180125c1d6556a077551b9c26bdcef5b1df
parent901ca1385db116087f58b33b18a6cd174eadaf5c (diff)
INTEGRATION: CWS long2int (1.18.74); FILE MERGED
2005/10/26 18:06:49 kendy 1.18.74.1: #i56715# Trivial long/ULONG -> sal_Int32/sal_uInt32 patches extracted from ooo64bit02 CWS.
-rw-r--r--sw/source/core/access/accdoc.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/access/accdoc.hxx b/sw/source/core/access/accdoc.hxx
index e4fe0e0aab..f03598304a 100644
--- a/sw/source/core/access/accdoc.hxx
+++ b/sw/source/core/access/accdoc.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: accdoc.hxx,v $
*
- * $Revision: 1.18 $
+ * $Revision: 1.19 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 02:46:39 $
+ * last change: $Author: vg $ $Date: 2006-03-31 09:09:45 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -79,12 +79,12 @@ public:
//===== XAccessibleContext ==============================================
/// Return the number of currently visible children.
- virtual long SAL_CALL getAccessibleChildCount (void)
+ virtual sal_Int32 SAL_CALL getAccessibleChildCount (void)
throw (::com::sun::star::uno::RuntimeException);
/// Return the specified child or NULL if index is invalid.
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible> SAL_CALL
- getAccessibleChild (long nIndex)
+ getAccessibleChild (sal_Int32 nIndex)
throw (::com::sun::star::uno::RuntimeException,
::com::sun::star::lang::IndexOutOfBoundsException);