diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 23:32:37 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 23:32:37 +0000 |
commit | 51f4655db82a3c810bc9d7810ca01110dbeb340c (patch) | |
tree | 71ac42baabf57ec4cdb05babda61a72d92627117 /store | |
parent | f8ca6b4a0725892c7a22833b1b9ca67e5adca5e5 (diff) |
INTEGRATION: CWS warnings01 (1.5.88); FILE MERGED
2005/09/22 21:56:55 sb 1.5.88.2: RESYNC: (1.5-1.6); FILE MERGED
2005/09/02 16:30:31 sb 1.5.88.1: #i53898# Made code warning-free.
Diffstat (limited to 'store')
-rw-r--r-- | store/source/memlckb.cxx | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/store/source/memlckb.cxx b/store/source/memlckb.cxx index c84c3453504a..b1242ea2ad61 100644 --- a/store/source/memlckb.cxx +++ b/store/source/memlckb.cxx @@ -4,9 +4,9 @@ * * $RCSfile: memlckb.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: rt $ $Date: 2005-09-08 08:42:56 $ + * last change: $Author: hr $ $Date: 2006-06-20 00:32:37 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -355,8 +355,7 @@ storeError OMemoryLockBytes::stat (sal_uInt32 &rnSize) /* * lockRange. */ -storeError OMemoryLockBytes::lockRange ( - sal_uInt32 nOffset, sal_uInt32 nBytes) +storeError OMemoryLockBytes::lockRange (sal_uInt32, sal_uInt32) { // Acquire exclusive access. osl::MutexGuard aGuard (m_aMutex); @@ -366,8 +365,7 @@ storeError OMemoryLockBytes::lockRange ( /* * unlockRange. */ -storeError OMemoryLockBytes::unlockRange ( - sal_uInt32 nOffset, sal_uInt32 nBytes) +storeError OMemoryLockBytes::unlockRange (sal_uInt32, sal_uInt32) { // Acquire exclusive access. osl::MutexGuard aGuard (m_aMutex); |