summaryrefslogtreecommitdiff
path: root/svx/source/form/formcontrolling.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-15 15:54:06 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-18 15:30:08 +0200
commitd1379416c6915dd48fa5e350460215aa3d3e6ce8 (patch)
treed295892a6d048901d1b83edb3b7b6573738669dd /svx/source/form/formcontrolling.cxx
parent142997f2e91b4e9e994babcf3221ef07105e2cc6 (diff)
Avoid reserved identifiers
Change-Id: Ie20bd7a9b3824ce2208d23ded2eae4959dff7bc4
Diffstat (limited to 'svx/source/form/formcontrolling.cxx')
-rw-r--r--svx/source/form/formcontrolling.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/svx/source/form/formcontrolling.cxx b/svx/source/form/formcontrolling.cxx
index da0d42ddae28..2d93b6357256 100644
--- a/svx/source/form/formcontrolling.cxx
+++ b/svx/source/form/formcontrolling.cxx
@@ -155,9 +155,9 @@ namespace svx
struct FormFeatureToSlotId : public ::std::unary_function< sal_Int16, sal_Int32 >
{
- sal_Int32 operator()( sal_Int16 _FormFeature )
+ sal_Int32 operator()( sal_Int16 FormFeature )
{
- return FeatureSlotTranslation::getSlotIdForFormFeature( _FormFeature );
+ return FeatureSlotTranslation::getSlotIdForFormFeature( FormFeature );
}
};
}
@@ -385,16 +385,16 @@ namespace svx
}
- void SAL_CALL FormControllerHelper::invalidateFeatures( const Sequence< ::sal_Int16 >& _Features ) throw (RuntimeException, std::exception)
+ void SAL_CALL FormControllerHelper::invalidateFeatures( const Sequence< ::sal_Int16 >& Features ) throw (RuntimeException, std::exception)
{
if ( !m_pInvalidationCallback )
// nobody's interested in ...
return;
- ::std::vector< sal_Int32 > aFeatures( _Features.getLength() );
+ ::std::vector< sal_Int32 > aFeatures( Features.getLength() );
::std::transform(
- _Features.getConstArray(),
- _Features.getConstArray() + _Features.getLength(),
+ Features.getConstArray(),
+ Features.getConstArray() + Features.getLength(),
aFeatures.begin(),
FormFeatureToSlotId()
);
@@ -446,10 +446,10 @@ namespace svx
}
- void SAL_CALL FormControllerHelper::errorOccured( const SQLErrorEvent& _Event ) throw (RuntimeException, std::exception)
+ void SAL_CALL FormControllerHelper::errorOccured( const SQLErrorEvent& Event ) throw (RuntimeException, std::exception)
{
OSL_ENSURE( !m_aOperationError.hasValue(), "FormControllerHelper::errorOccurred: two errors during one operation?" );
- m_aOperationError = _Event.Reason;
+ m_aOperationError = Event.Reason;
}