ucb/source/ucp/file/filnot.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit b8cb558c4e36c8aaa6af6dd0a90046641d5b8d56 Author: Arkadiy Illarionov <[email protected]> AuthorDate: Sat Jun 29 16:59:40 2019 +0300 Commit: Noel Grandin <[email protected]> CommitDate: Sat Jun 29 20:09:04 2019 +0200 Use proper index in loop body Change-Id: I80bc0d8f23ad436c9f1d1b1501bbcba6f3cb29ff Reviewed-on: https://gerrit.libreoffice.org/74890 Tested-by: Jenkins Reviewed-by: Noel Grandin <[email protected]> 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 ); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
