summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorArkadiy Illarionov <qarkai@gmail.com>2019-06-29 16:59:40 +0300
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-06-29 20:09:04 +0200
commitb8cb558c4e36c8aaa6af6dd0a90046641d5b8d56 (patch)
tree8f670ed5f8ee096bef609096e881526dfe236e5f /ucb
parentceca6c7e111169169123bab5ca515a3ff1c96c13 (diff)
Use proper index in loop body
Change-Id: I80bc0d8f23ad436c9f1d1b1501bbcba6f3cb29ff Reviewed-on: https://gerrit.libreoffice.org/74890 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/file/filnot.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/file/filnot.cxx b/ucb/source/ucp/file/filnot.cxx
index c63dae89dcf6..ae659c4bceb3 100644
--- a/ucb/source/ucp/file/filnot.cxx
+++ b/ucb/source/ucp/file/filnot.cxx
@@ -238,7 +238,7 @@ void PropertyChangeNotifier::notifyPropertyChanged(
for( sal_Int32 i = 0; i < seqList.getLength(); ++i )
{
- uno::Reference< beans::XPropertiesChangeListener > aListener( seqList[j],uno::UNO_QUERY );
+ uno::Reference< beans::XPropertiesChangeListener > aListener( seqList[i],uno::UNO_QUERY );
if( aListener.is() )
{
aListener->propertiesChange( seq );