diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 11:13:49 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 11:13:49 +0000 |
commit | d6f996d371973aa10e2c86cd2338b55e83b9fba9 (patch) | |
tree | 23948502f3a0da769043730eff47d26bcf4c1269 /ucbhelper | |
parent | 8fefff2e83c51c72447b16ef3132c562452a2ad0 (diff) |
INTEGRATION: CWS warnings01 (1.3.140); FILE MERGED
2005/09/22 19:06:28 sb 1.3.140.2: RESYNC: (1.3-1.4); FILE MERGED
2005/09/01 12:15:34 sb 1.3.140.1: #i53898# Made code warning-free.
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/workben/myucp/myucp_datasupplier.hxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ucbhelper/workben/myucp/myucp_datasupplier.hxx b/ucbhelper/workben/myucp/myucp_datasupplier.hxx index 7e2d07314ea8..9a97d6f9df71 100644 --- a/ucbhelper/workben/myucp/myucp_datasupplier.hxx +++ b/ucbhelper/workben/myucp/myucp_datasupplier.hxx @@ -4,9 +4,9 @@ * * $RCSfile: myucp_datasupplier.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: rt $ $Date: 2005-09-09 16:45:02 $ + * last change: $Author: hr $ $Date: 2006-06-19 12:13:49 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -61,22 +61,22 @@ public: sal_Int32 nOpenMode ); virtual ~DataSupplier(); - virtual rtl::OUString queryContentIdentifierString( sal_uInt32 nIndex ); + virtual rtl::OUString queryContentIdentifierString( sal_Int32 nIndex ); virtual com::sun::star::uno::Reference< com::sun::star::ucb::XContentIdentifier > - queryContentIdentifier( sal_uInt32 nIndex ); + queryContentIdentifier( sal_Int32 nIndex ); virtual com::sun::star::uno::Reference< com::sun::star::ucb::XContent > - queryContent( sal_uInt32 nIndex ); + queryContent( sal_Int32 nIndex ); - virtual sal_Bool getResult( sal_uInt32 nIndex ); + virtual sal_Bool getResult( sal_Int32 nIndex ); - virtual sal_uInt32 totalCount(); - virtual sal_uInt32 currentCount(); + virtual sal_Int32 totalCount(); + virtual sal_Int32 currentCount(); virtual sal_Bool isCountFinal(); virtual com::sun::star::uno::Reference< com::sun::star::sdbc::XRow > - queryPropertyValues( sal_uInt32 nIndex ); - virtual void releasePropertyValues( sal_uInt32 nIndex ); + queryPropertyValues( sal_Int32 nIndex ); + virtual void releasePropertyValues( sal_Int32 nIndex ); virtual void close(); |