[Libreoffice-commits] .: binfilter/bf_forms

Caolán McNamara caolan at kemper.freedesktop.org
Fri Mar 18 13:28:31 PDT 2011


 binfilter/bf_forms/source/component/forms_CheckBox.cxx      |    2 +-
 binfilter/bf_forms/source/component/forms_ComboBox.cxx      |    2 +-
 binfilter/bf_forms/source/component/forms_FormComponent.cxx |    4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit d76610c406028a9bd6747c657124071df7f56b14
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Fri Mar 18 20:27:55 2011 +0000

    WaE: silence warnings

diff --git a/binfilter/bf_forms/source/component/forms_CheckBox.cxx b/binfilter/bf_forms/source/component/forms_CheckBox.cxx
index 125bb7d..5a0160a 100644
--- a/binfilter/bf_forms/source/component/forms_CheckBox.cxx
+++ b/binfilter/bf_forms/source/component/forms_CheckBox.cxx
@@ -163,7 +163,7 @@ void SAL_CALL OCheckBoxModel::disposing()
 }
 
 //------------------------------------------------------------------------------
-void OCheckBoxModel::_propertyChanged(const PropertyChangeEvent& _rEvent) throw(RuntimeException)
+void OCheckBoxModel::_propertyChanged(const PropertyChangeEvent& /*rEvent*/) throw(RuntimeException)
 {
     OSL_ENSURE( false, "OCheckBoxModel::_propertyChanged: dead code!?" );
 }
diff --git a/binfilter/bf_forms/source/component/forms_ComboBox.cxx b/binfilter/bf_forms/source/component/forms_ComboBox.cxx
index 58d91e8..f126107 100644
--- a/binfilter/bf_forms/source/component/forms_ComboBox.cxx
+++ b/binfilter/bf_forms/source/component/forms_ComboBox.cxx
@@ -435,7 +435,7 @@ void OComboBoxModel::loadData()
 }
 
 //------------------------------------------------------------------------------
-void SAL_CALL OComboBoxModel::reloaded( const EventObject& aEvent ) throw(RuntimeException)
+void SAL_CALL OComboBoxModel::reloaded( const EventObject& /*rEvent*/ ) throw(RuntimeException)
 {
     OSL_ENSURE( false, "OComboBoxModel::reloaded: dead code!?" );
 }
diff --git a/binfilter/bf_forms/source/component/forms_FormComponent.cxx b/binfilter/bf_forms/source/component/forms_FormComponent.cxx
index 4c03481..39912f8 100644
--- a/binfilter/bf_forms/source/component/forms_FormComponent.cxx
+++ b/binfilter/bf_forms/source/component/forms_FormComponent.cxx
@@ -1398,7 +1398,7 @@ sal_Bool OBoundControlModel::_approve(sal_Int32 _nColumnType)
 
 // XLoadListener
 //------------------------------------------------------------------------------
-void SAL_CALL OBoundControlModel::loaded(const com::sun::star::lang::EventObject& _rEvent) throw(RuntimeException)
+void SAL_CALL OBoundControlModel::loaded(const com::sun::star::lang::EventObject& /*rEvent*/) throw(RuntimeException)
 {
     OSL_ENSURE( false, "OBoundControlModel::loaded: dead code!?" );
 }
@@ -1431,7 +1431,7 @@ void SAL_CALL OBoundControlModel::unloading(const com::sun::star::lang::EventObj
 }
 
 //------------------------------------------------------------------------------
-void SAL_CALL OBoundControlModel::reloaded(const com::sun::star::lang::EventObject& aEvent) throw(RuntimeException)
+void SAL_CALL OBoundControlModel::reloaded(const com::sun::star::lang::EventObject& /*rEvent*/) throw(RuntimeException)
 {
     OSL_ENSURE( false, "OBoundControlModel::reloaded: dead code!?" );
 }


More information about the Libreoffice-commits mailing list