diff options
-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; |