diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2007-06-05 17:21:46 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2007-06-05 17:21:46 +0000 |
commit | bc11c97e7d3131b22923956ebf5bfe0e7db6d49f (patch) | |
tree | 68b840ccd6a546fb7d848c7120b3cde759550f88 /ucb | |
parent | 08d0a8ba06d124b8c7bfc7efc8b31f6a35235f82 (diff) |
INTEGRATION: CWS bgdlremove (1.8.62); FILE MERGED
2007/05/18 11:37:19 kso 1.8.62.2: #i77419# - cleanup of ucbhelper namespaces.
2007/05/11 12:59:03 kso 1.8.62.1: #i76911# - ucbhelper no longer uses VOS
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav/webdavdatasupplier.hxx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/ucb/source/ucp/webdav/webdavdatasupplier.hxx b/ucb/source/ucp/webdav/webdavdatasupplier.hxx index 1ce3fa043259..b21bfd70195a 100644 --- a/ucb/source/ucp/webdav/webdavdatasupplier.hxx +++ b/ucb/source/ucp/webdav/webdavdatasupplier.hxx @@ -4,9 +4,9 @@ * * $RCSfile: webdavdatasupplier.hxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: hr $ $Date: 2006-06-20 05:38:41 $ + * last change: $Author: ihi $ $Date: 2007-06-05 18:21:46 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -53,7 +53,7 @@ class Content; struct DAVResource; class ContentProperties; -class DataSupplier : public ucb::ResultSetDataSupplier +class DataSupplier : public ucbhelper::ResultSetDataSupplier { DataSupplier_Impl* m_pImpl; @@ -68,22 +68,22 @@ public: virtual ~DataSupplier(); - virtual rtl::OUString queryContentIdentifierString( sal_Int32 nIndex ); + virtual rtl::OUString queryContentIdentifierString( sal_uInt32 nIndex ); virtual com::sun::star::uno::Reference< com::sun::star::ucb::XContentIdentifier > - queryContentIdentifier( sal_Int32 nIndex ); + queryContentIdentifier( sal_uInt32 nIndex ); virtual com::sun::star::uno::Reference< com::sun::star::ucb::XContent > - queryContent( sal_Int32 nIndex ); + queryContent( sal_uInt32 nIndex ); - virtual sal_Bool getResult( sal_Int32 nIndex ); + virtual sal_Bool getResult( sal_uInt32 nIndex ); - virtual sal_Int32 totalCount(); - virtual sal_Int32 currentCount(); + virtual sal_uInt32 totalCount(); + virtual sal_uInt32 currentCount(); virtual sal_Bool isCountFinal(); virtual com::sun::star::uno::Reference< com::sun::star::sdbc::XRow > - queryPropertyValues( sal_Int32 nIndex ); - virtual void releasePropertyValues( sal_Int32 nIndex ); + queryPropertyValues( sal_uInt32 nIndex ); + virtual void releasePropertyValues( sal_uInt32 nIndex ); virtual void close(); |