[Libreoffice-commits] .: binfilter/bf_forms
Caolán McNamara
caolan at kemper.freedesktop.org
Thu Nov 18 04:04:52 PST 2010
binfilter/bf_forms/source/component/forms_Grid.cxx | 8 ++++----
binfilter/bf_forms/source/inc/InterfaceContainer.hxx | 6 +++---
2 files changed, 7 insertions(+), 7 deletions(-)
New commits:
commit 0d03ad93d631ef5d754f8ddec7d86cd94085d810
Author: Caolán McNamara <caolanm at redhat.com>
Date: Wed Nov 17 21:00:36 2010 +0000
remove some warnings
diff --git a/binfilter/bf_forms/source/component/forms_Grid.cxx b/binfilter/bf_forms/source/component/forms_Grid.cxx
index bf98ca8..c80475e 100644
--- a/binfilter/bf_forms/source/component/forms_Grid.cxx
+++ b/binfilter/bf_forms/source/component/forms_Grid.cxx
@@ -128,16 +128,16 @@ OGridControlModel::OGridControlModel(const Reference<XMultiServiceFactory>& _rxF
,m_aSelectListeners(m_aMutex)
,m_aResetListeners(m_aMutex)
,m_aDefaultControl(FRM_CONTROL_GRID) // use the old control name for compytibility reasons
+ ,m_nFontRelief(awt::FontRelief::NONE)
+ ,m_nFontEmphasis(awt::FontEmphasisMark::NONE)
,m_nFontEvent(0)
+ ,m_nBorder(1)
,m_bEnable(sal_True)
,m_bNavigation(sal_True)
- ,m_nBorder(1)
,m_bRecordMarker(sal_True)
,m_bPrintable(sal_True)
,m_bAlwaysShowCursor(sal_False)
,m_bDisplaySynchron(sal_True)
- ,m_nFontRelief(awt::FontRelief::NONE)
- ,m_nFontEmphasis(awt::FontEmphasisMark::NONE)
{
DBG_CTOR(OGridControlModel,NULL);
@@ -192,7 +192,7 @@ OGridControlModel::~OGridControlModel()
IMPLEMENT_DEFAULT_CLONING( OGridControlModel )
//------------------------------------------------------------------------------
-void OGridControlModel::cloneColumns( const OGridControlModel* _pOriginalContainer )
+void OGridControlModel::cloneColumns( const OGridControlModel* )
{
try
{
diff --git a/binfilter/bf_forms/source/inc/InterfaceContainer.hxx b/binfilter/bf_forms/source/inc/InterfaceContainer.hxx
index 0b6df29..484896f 100644
--- a/binfilter/bf_forms/source/inc/InterfaceContainer.hxx
+++ b/binfilter/bf_forms/source/inc/InterfaceContainer.hxx
@@ -208,11 +208,11 @@ protected:
) throw(::com::sun::star::lang::IllegalArgumentException);
// called after the object is inserted, but before the "real listeners" are notified
- virtual void implInserted( const ElementDescription* _pElement ) { }
+ virtual void implInserted( const ElementDescription* /*_pElement*/ ) { }
// called after the object is removed, but before the "real listeners" are notified
- virtual void implRemoved(const InterfaceRef& _rxObject) { }
+ virtual void implRemoved(const InterfaceRef& /*_rxObject*/) { }
// called after an object was replaced, but before the "real listeners" are notified
- virtual void implReplaced( const InterfaceRef& _rxReplacedObject, const ElementDescription* _pElement ) { }
+ virtual void implReplaced( const InterfaceRef& /*_rxReplacedObject*/, const ElementDescription* /*_pElement*/ ) { }
void SAL_CALL writeEvents(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectOutputStream>& _rxOutStream);
void SAL_CALL readEvents(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectInputStream>& _rxInStream);
More information about the Libreoffice-commits
mailing list