summaryrefslogtreecommitdiff
path: root/forms/source/component
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 11:51:46 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 11:51:46 +0000
commit04e616bc184d0ff2f16d0d91c6877c5080e46180 (patch)
treebf32590823e534399702ead83c089489869550ad /forms/source/component
parentae383090c46a76db2ac1d413678e7c0a2a7370d5 (diff)
INTEGRATION: CWS warnings01 (1.41.38); FILE MERGED
2006/03/14 15:20:27 fs 1.41.38.1: #i57457# warning-free code
Diffstat (limited to 'forms/source/component')
-rw-r--r--forms/source/component/ImageControl.cxx33
1 files changed, 26 insertions, 7 deletions
diff --git a/forms/source/component/ImageControl.cxx b/forms/source/component/ImageControl.cxx
index 8f0ac846be00..a80aa91d89c2 100644
--- a/forms/source/component/ImageControl.cxx
+++ b/forms/source/component/ImageControl.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: ImageControl.cxx,v $
*
- * $Revision: 1.41 $
+ * $Revision: 1.42 $
*
- * last change: $Author: obo $ $Date: 2005-12-21 13:22:16 $
+ * last change: $Author: hr $ $Date: 2006-06-19 12:51:46 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -830,6 +830,25 @@ void OImageControlControl::mousePressed(const ::com::sun::star::awt::MouseEvent&
}
}
+//------------------------------------------------------------------------------
+void SAL_CALL OImageControlControl::mouseReleased(const awt::MouseEvent& /*e*/) throw ( RuntimeException )
+{
+ // TODO: place your code here
+}
+
+//------------------------------------------------------------------------------
+void SAL_CALL OImageControlControl::mouseEntered(const awt::MouseEvent& /*e*/) throw ( RuntimeException )
+{
+ // TODO: place your code here
+}
+
+//------------------------------------------------------------------------------
+void SAL_CALL OImageControlControl::mouseExited(const awt::MouseEvent& /*e*/) throw ( RuntimeException )
+{
+ // TODO: place your code here
+}
+
+
//==============================================================================
//= OImageIndicator
//==============================================================================
@@ -856,31 +875,31 @@ void OImageIndicator::reset()
}
//--------------------------------------------------------------------
-void SAL_CALL OImageIndicator::init( sal_Int32 Width, sal_Int32 Height ) throw (RuntimeException)
+void SAL_CALL OImageIndicator::init( sal_Int32 /*Width*/, sal_Int32 /*Height*/ ) throw (RuntimeException)
{
m_bIsProducing = sal_True;
m_bIsEmptyImage = sal_True;
}
//--------------------------------------------------------------------
-void SAL_CALL OImageIndicator::setColorModel( sal_Int16 BitCount, const Sequence< sal_Int32 >& RGBAPal, sal_Int32 RedMask, sal_Int32 GreenMask, sal_Int32 BlueMask, sal_Int32 AlphaMask ) throw (RuntimeException)
+void SAL_CALL OImageIndicator::setColorModel( sal_Int16 /*BitCount*/, const Sequence< sal_Int32 >& /*RGBAPal*/, sal_Int32 /*RedMask*/, sal_Int32 /*GreenMask*/, sal_Int32 /*BlueMask*/, sal_Int32 /*AlphaMask*/ ) throw (RuntimeException)
{
}
//--------------------------------------------------------------------
-void SAL_CALL OImageIndicator::setPixelsByBytes( sal_Int32 nX, sal_Int32 nY, sal_Int32 nWidth, sal_Int32 nHeight, const Sequence< sal_Int8 >& aProducerData, sal_Int32 nOffset, sal_Int32 nScanSize ) throw (RuntimeException)
+void SAL_CALL OImageIndicator::setPixelsByBytes( sal_Int32 /*nX*/, sal_Int32 /*nY*/, sal_Int32 /*nWidth*/, sal_Int32 /*nHeight*/, const Sequence< sal_Int8 >& /*aProducerData*/, sal_Int32 /*nOffset*/, sal_Int32 /*nScanSize*/ ) throw (RuntimeException)
{
m_bIsEmptyImage = sal_False;
}
//--------------------------------------------------------------------
-void SAL_CALL OImageIndicator::setPixelsByLongs( sal_Int32 nX, sal_Int32 nY, sal_Int32 nWidth, sal_Int32 nHeight, const Sequence< sal_Int32 >& aProducerData, sal_Int32 nOffset, sal_Int32 nScanSize ) throw (RuntimeException)
+void SAL_CALL OImageIndicator::setPixelsByLongs( sal_Int32 /*nX*/, sal_Int32 /*nY*/, sal_Int32 /*nWidth*/, sal_Int32 /*nHeight*/, const Sequence< sal_Int32 >& /*aProducerData*/, sal_Int32 /*nOffset*/, sal_Int32 /*nScanSize*/ ) throw (RuntimeException)
{
m_bIsEmptyImage = sal_False;
}
//--------------------------------------------------------------------
-void SAL_CALL OImageIndicator::complete( sal_Int32 Status, const Reference< XImageProducer >& xProducer ) throw (RuntimeException)
+void SAL_CALL OImageIndicator::complete( sal_Int32 /*Status*/, const Reference< XImageProducer >& /*xProducer*/ ) throw (RuntimeException)
{
m_bIsProducing = sal_False;
}