[Libreoffice-commits] core.git: ucb/source
Arkadiy Illarionov (via logerrit)
logerrit at kemper.freedesktop.org
Sat Jun 29 18:10:14 UTC 2019
ucb/source/ucp/file/filnot.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit b8cb558c4e36c8aaa6af6dd0a90046641d5b8d56
Author: Arkadiy Illarionov <qarkai at gmail.com>
AuthorDate: Sat Jun 29 16:59:40 2019 +0300
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
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 <noel.grandin at collabora.co.uk>
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 );
More information about the Libreoffice-commits
mailing list