diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 13:00:21 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 13:00:21 +0000 |
commit | 9bae0396e5738e4683d88daa025c91e6f2b1b210 (patch) | |
tree | d1c0bad765520c7bbe284b38531510c7b32d6a73 /avmedia | |
parent | 3324446f3f49256ee00c5afaf9e9e01f5327e337 (diff) |
INTEGRATION: CWS warnings01 (1.3.24); FILE MERGED
2005/11/28 12:46:26 cl 1.3.24.1: warning free code fixes
Diffstat (limited to 'avmedia')
-rw-r--r-- | avmedia/source/xine/window.cxx | 12 | ||||
-rw-r--r-- | avmedia/source/xine/xinecommon.hxx | 6 |
2 files changed, 9 insertions, 9 deletions
diff --git a/avmedia/source/xine/window.cxx b/avmedia/source/xine/window.cxx index a082e12d15d6..cda4677300e5 100644 --- a/avmedia/source/xine/window.cxx +++ b/avmedia/source/xine/window.cxx @@ -4,9 +4,9 @@ * * $RCSfile: window.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-07 19:48:40 $ + * last change: $Author: hr $ $Date: 2006-06-19 14:00:07 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -278,7 +278,7 @@ void Window::implLayoutVideoWindow() // ------------------------------------------------------------------------------ -bool Window::create( const uno::Sequence< uno::Any >& rArguments ) +bool Window::create( const uno::Sequence< uno::Any >& /*rArguments*/ ) { bool bRet = false; @@ -332,7 +332,7 @@ void SAL_CALL Window::setPointerType( sal_Int32 nPointerType ) // ------------------------------------------------------------------------------ -void SAL_CALL Window::setPosSize( sal_Int32 X, sal_Int32 Y, sal_Int32 Width, sal_Int32 Height, sal_Int16 Flags ) +void SAL_CALL Window::setPosSize( sal_Int32 /*X*/, sal_Int32 /*Y*/, sal_Int32 /*Width*/, sal_Int32 /*Height*/, sal_Int16 /*Flags*/ ) throw (uno::RuntimeException) { implLayoutVideoWindow(); @@ -350,14 +350,14 @@ awt::Rectangle SAL_CALL Window::getPosSize() // ------------------------------------------------------------------------------ -void SAL_CALL Window::setVisible( sal_Bool bVisible ) +void SAL_CALL Window::setVisible( sal_Bool /* bVisible */ ) throw (uno::RuntimeException) { } // ------------------------------------------------------------------------------ -void SAL_CALL Window::setEnable( sal_Bool bEnable ) +void SAL_CALL Window::setEnable( sal_Bool /* bEnable */ ) throw (uno::RuntimeException) { } diff --git a/avmedia/source/xine/xinecommon.hxx b/avmedia/source/xine/xinecommon.hxx index bee0145d99da..7a010f5c8e14 100644 --- a/avmedia/source/xine/xinecommon.hxx +++ b/avmedia/source/xine/xinecommon.hxx @@ -4,9 +4,9 @@ * * $RCSfile: xinecommon.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-07 19:49:12 $ + * last change: $Author: hr $ $Date: 2006-06-19 14:00:21 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -40,7 +40,7 @@ #include <osl/mutex.hxx> #endif #ifndef __RTL_USTRING_ -#include <rtl/ustring> +#include <rtl/ustring.hxx> #endif #ifndef _DEBUG_HXX #include <tools/debug.hxx> |