diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-09 20:18:46 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-10 18:32:15 +0100 |
commit | cda55df8a0091271ba372e4e191f86fdeae7ae53 (patch) | |
tree | 439e2330d7ba873a3bd6b9abd808690556569048 /ucb | |
parent | 4a296a0548c0e7ac76dca1f0fbd8e67be1f2e76c (diff) |
Avoid reserved identifier
Change-Id: I6c60905541de56229bc26e9dc6e589d4099e9266
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/file/filnot.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/file/filnot.cxx b/ucb/source/ucp/file/filnot.cxx index 35e703697c8f..32ca39641475 100644 --- a/ucb/source/ucp/file/filnot.cxx +++ b/ucb/source/ucp/file/filnot.cxx @@ -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; |