summaryrefslogtreecommitdiff
path: root/fpicker/source/win32/misc/WinImplHelper.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-10-12 09:56:38 +0000
committerOliver Bolte <obo@openoffice.org>2006-10-12 09:56:38 +0000
commitb90208bb4603a41a63791923b4778007637aa32b (patch)
tree2b8d71503134913b2e4ff0f9fb3fe72246d8fa24 /fpicker/source/win32/misc/WinImplHelper.cxx
parentff350bf344ba56f3e5a481f4a2157928844b3449 (diff)
INTEGRATION: CWS sb59 (1.7.100); FILE MERGED
2006/08/10 12:04:54 sb 1.7.100.1: #i67487# Made code warning-free (wntmsci10).
Diffstat (limited to 'fpicker/source/win32/misc/WinImplHelper.cxx')
-rw-r--r--fpicker/source/win32/misc/WinImplHelper.cxx12
1 files changed, 7 insertions, 5 deletions
diff --git a/fpicker/source/win32/misc/WinImplHelper.cxx b/fpicker/source/win32/misc/WinImplHelper.cxx
index 0eacb9494fa2..3fb91a3c4197 100644
--- a/fpicker/source/win32/misc/WinImplHelper.cxx
+++ b/fpicker/source/win32/misc/WinImplHelper.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: WinImplHelper.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: obo $ $Date: 2006-09-16 17:59:30 $
+ * last change: $Author: obo $ $Date: 2006-10-12 10:56:08 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -105,7 +105,9 @@ bool SAL_CALL IsWindowsVersion(unsigned int PlatformId, unsigned int MajorVersio
(MajorVersion == osvi.dwMajorVersion);
if (MinorVersion > -1)
- bRet = bRet && (MinorVersion == osvi.dwMinorVersion);
+ bRet = bRet &&
+ (sal::static_int_cast< unsigned int >(MinorVersion) ==
+ osvi.dwMinorVersion);
return bRet;
}
@@ -163,7 +165,7 @@ void SAL_CALL ListboxAddString( HWND hwnd, const OUString& aString )
{
LRESULT rc = SendMessageW(
hwnd, CB_ADDSTRING, 0, reinterpret_cast< LPARAM >(aString.getStr( )) );
-
+ (void) rc; // avoid warning
OSL_ASSERT( (CB_ERR != rc) && (CB_ERRSPACE != rc) );
}
@@ -286,7 +288,7 @@ void SAL_CALL ListboxDeleteItem( HWND hwnd, const Any& aPosition, const Referenc
//
//------------------------------------------------------------
-void SAL_CALL ListboxDeleteItems( HWND hwnd, const Any& /*unused*/, const Reference< XInterface >& rXInterface, sal_Int16 aArgPos )
+void SAL_CALL ListboxDeleteItems( HWND hwnd, const Any&, const Reference< XInterface >&, sal_Int16 )
throw( IllegalArgumentException )
{
OSL_ASSERT( IsWindow( hwnd ) );