summaryrefslogtreecommitdiff
path: root/avmedia
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 12:59:52 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 12:59:52 +0000
commit3324446f3f49256ee00c5afaf9e9e01f5327e337 (patch)
tree97598bd1ee38dde2516ce2a9cdfcc6567d06840a /avmedia
parent16f25fd4ca4ce3cbec00fe9b7d6f18fee7d99f87 (diff)
INTEGRATION: CWS warnings01 (1.4.24); FILE MERGED
2005/11/28 12:46:26 cl 1.4.24.1: warning free code fixes
Diffstat (limited to 'avmedia')
-rw-r--r--avmedia/source/viewer/mediawindow.cxx35
-rw-r--r--avmedia/source/xine/player.cxx18
2 files changed, 28 insertions, 25 deletions
diff --git a/avmedia/source/viewer/mediawindow.cxx b/avmedia/source/viewer/mediawindow.cxx
index e9a4278afbd5..90df0d6232bf 100644
--- a/avmedia/source/viewer/mediawindow.cxx
+++ b/avmedia/source/viewer/mediawindow.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: mediawindow.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 19:43:09 $
+ * last change: $Author: hr $ $Date: 2006-06-19 13:58:54 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -103,57 +103,57 @@ bool MediaWindow::isValid() const
// -------------------------------------------------------------------------
-void MediaWindow::MouseMove( const MouseEvent& rMEvt )
+void MediaWindow::MouseMove( const MouseEvent& /* rMEvt */ )
{
}
// ---------------------------------------------------------------------
-void MediaWindow::MouseButtonDown( const MouseEvent& rMEvt )
+void MediaWindow::MouseButtonDown( const MouseEvent& /* rMEvt */ )
{
}
// ---------------------------------------------------------------------
-void MediaWindow::MouseButtonUp( const MouseEvent& rMEvt )
+void MediaWindow::MouseButtonUp( const MouseEvent& /* rMEvt */ )
{
}
// -------------------------------------------------------------------------
-void MediaWindow::KeyInput( const KeyEvent& rKEvt )
+void MediaWindow::KeyInput( const KeyEvent& /* rKEvt */ )
{
}
// -------------------------------------------------------------------------
-void MediaWindow::KeyUp( const KeyEvent& rKEvt )
+void MediaWindow::KeyUp( const KeyEvent& /* rKEvt */ )
{
}
// -------------------------------------------------------------------------
-void MediaWindow::Command( const CommandEvent& rCEvt )
+void MediaWindow::Command( const CommandEvent& /* rCEvt */ )
{
}
// -------------------------------------------------------------------------
-sal_Int8 MediaWindow::AcceptDrop( const AcceptDropEvent& rEvt )
+sal_Int8 MediaWindow::AcceptDrop( const AcceptDropEvent& /* rEvt */ )
{
return 0;
}
// -------------------------------------------------------------------------
-sal_Int8 MediaWindow::ExecuteDrop( const ExecuteDropEvent& rEvt )
+sal_Int8 MediaWindow::ExecuteDrop( const ExecuteDropEvent& /* rEvt */ )
{
return 0;
}
// -------------------------------------------------------------------------
-void MediaWindow::StartDrag( sal_Int8 nAction, const Point& rPosPixel )
+void MediaWindow::StartDrag( sal_Int8 /* nAction */, const Point& /* rPosPixel */ )
{
}
@@ -389,7 +389,8 @@ void MediaWindow::getMediaFilters( FilterNameVector& rFilterNameVector )
"Vivo Video", "viv",
"WAVE Audio", "wav" };
- for( int i = 0; i < ( sizeof( pFilters ) / sizeof( char* ) ); i += 2 )
+ unsigned int i;
+ for( i = 0; i < ( sizeof( pFilters ) / sizeof( char* ) ); i += 2 )
{
rFilterNameVector.push_back( ::std::make_pair< ::rtl::OUString, ::rtl::OUString >(
::rtl::OUString::createFromAscii( pFilters[ i ] ),
@@ -399,7 +400,7 @@ void MediaWindow::getMediaFilters( FilterNameVector& rFilterNameVector )
// -------------------------------------------------------------------------
-bool MediaWindow::executeMediaURLDialog( Window* pParent, ::rtl::OUString& rURL, bool bInsertDialog )
+bool MediaWindow::executeMediaURLDialog( Window* /* pParent */, ::rtl::OUString& rURL, bool bInsertDialog )
{
::sfx2::FileDialogHelper aDlg( ::sfx2::FILEOPEN_SIMPLE, 0 );
static const ::rtl::OUString aWildcard( RTL_CONSTASCII_USTRINGPARAM( "*." ) );
@@ -411,7 +412,8 @@ bool MediaWindow::executeMediaURLDialog( Window* pParent, ::rtl::OUString& rURL,
getMediaFilters( aFilters );
- for( int i = 0; i < aFilters.size(); ++i )
+ unsigned int i;
+ for( i = 0; i < aFilters.size(); ++i )
{
for( sal_Int32 nIndex = 0; nIndex >= 0; )
{
@@ -425,7 +427,7 @@ bool MediaWindow::executeMediaURLDialog( Window* pParent, ::rtl::OUString& rURL,
// add filter for all media types
aDlg.AddFilter( AVMEDIA_RESID( AVMEDIA_STR_ALL_MEDIAFILES ), aAllTypes );
- for( int i = 0; i < aFilters.size(); ++i )
+ for( i = 0; i < aFilters.size(); ++i )
{
::rtl::OUString aTypes;
@@ -515,7 +517,8 @@ bool MediaWindow::isMediaURL( const ::rtl::OUString& rURL, bool bDeep, Size* pPr
getMediaFilters( aFilters );
- for( int i = 0; ( i < aFilters.size() ) && !bRet; ++i )
+ unsigned int i;
+ for( i = 0; ( i < aFilters.size() ) && !bRet; ++i )
{
for( sal_Int32 nIndex = 0; nIndex >= 0 && !bRet; )
{
diff --git a/avmedia/source/xine/player.cxx b/avmedia/source/xine/player.cxx
index 37461da97180..971d78482e8a 100644
--- a/avmedia/source/xine/player.cxx
+++ b/avmedia/source/xine/player.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: player.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 19:48:09 $
+ * last change: $Author: hr $ $Date: 2006-06-19 13:59:52 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -56,7 +56,7 @@ Player::~Player()
// ------------------------------------------------------------------------------
-bool Player::create( const ::rtl::OUString& rURL )
+bool Player::create( const ::rtl::OUString& /* rURL */ )
{
bool bRet = false;
@@ -100,7 +100,7 @@ double SAL_CALL Player::getDuration( )
// ------------------------------------------------------------------------------
-void SAL_CALL Player::setMediaTime( double fTime )
+void SAL_CALL Player::setMediaTime( double /* fTime */ )
throw (uno::RuntimeException)
{
}
@@ -117,7 +117,7 @@ double SAL_CALL Player::getMediaTime( )
// ------------------------------------------------------------------------------
-void SAL_CALL Player::setStopTime( double fTime )
+void SAL_CALL Player::setStopTime( double /* fTime */ )
throw (uno::RuntimeException)
{
}
@@ -134,7 +134,7 @@ double SAL_CALL Player::getStopTime( )
// ------------------------------------------------------------------------------
-void SAL_CALL Player::setRate( double fRate )
+void SAL_CALL Player::setRate( double /* fRate */ )
throw (uno::RuntimeException)
{
}
@@ -151,7 +151,7 @@ double SAL_CALL Player::getRate( )
// ------------------------------------------------------------------------------
-void SAL_CALL Player::setPlaybackLoop( sal_Bool bSet )
+void SAL_CALL Player::setPlaybackLoop( sal_Bool /* bSet */ )
throw (uno::RuntimeException)
{
}
@@ -168,7 +168,7 @@ sal_Bool SAL_CALL Player::isPlaybackLoop( )
// ------------------------------------------------------------------------------
-void SAL_CALL Player::setMute( sal_Bool bSet )
+void SAL_CALL Player::setMute( sal_Bool /* bSet */ )
throw (uno::RuntimeException)
{
}
@@ -185,7 +185,7 @@ sal_Bool SAL_CALL Player::isMute( )
// ------------------------------------------------------------------------------
-void SAL_CALL Player::setVolumeDB( sal_Int16 nVolumeDB )
+void SAL_CALL Player::setVolumeDB( sal_Int16 /* nVolumeDB */ )
throw (uno::RuntimeException)
{
}