https://bugs.documentfoundation.org/show_bug.cgi?id=99973
--- Comment #1 from Julien Nabet <[email protected]> ---
I don't reproduce this with LO Debian package 5.1.3.2
I found that the commit which caused regression was:
https://cgit.freedesktop.org/libreoffice/core/commit/?id=0f6725454823a5789f3e1c70dad024c46d3f6fc9
this part specifically:
diff --git a/unotools/source/config/options.cxx
b/unotools/source/config/options.cxx
index 28b64bb..e336775 100644
--- a/unotools/source/config/options.cxx
+++ b/unotools/source/config/options.cxx
@@ -68,8 +68,8 @@ void ConfigurationBroadcaster::NotifyListeners( sal_uInt32
nHint )
nHint |= m_nBlockedHint;
m_nBlockedHint = 0;
if ( mpList ) {
- for ( size_t n = 0; n < mpList->size(); n++ ) {
- (*mpList)[ n ]->ConfigurationChanged( this, nHint );
+ for (ConfigurationListener* n : *mpList) {
+ n->ConfigurationChanged( this, nHint );
}
}
}
--
You are receiving this mail because:
You are the assignee for the bug._______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs