Avoid reserved identifier

Change-Id: I6c60905541de56229bc26e9dc6e589d4099e9266
This commit is contained in:
Stephan Bergmann
2016-03-09 20:18:46 +01:00
parent 4a296a0548
commit cda55df8a0

View File

@@ -211,10 +211,10 @@ PropertyChangeNotifier::~PropertyChangeNotifier()
void PropertyChangeNotifier::notifyPropertyChanged(
const uno::Sequence< beans::PropertyChangeEvent >& _Changes )
const uno::Sequence< beans::PropertyChangeEvent >& Changes_ )
{
sal_Int32 j;
uno::Sequence< beans::PropertyChangeEvent > Changes = _Changes;
uno::Sequence< beans::PropertyChangeEvent > Changes = Changes_;
for( j = 0; j < Changes.getLength(); ++j )
Changes[j].Source = m_xCreatorContent;