configure.ac | 2 +- vcl/source/window/paint.cxx | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-)
New commits: commit 3f6dc6f99906efc9ab594b69de8031fe77c97a1b Author: Andras Timar <[email protected]> AuthorDate: Mon Nov 3 19:09:04 2025 +0100 Commit: Andras Timar <[email protected]> CommitDate: Mon Nov 3 21:33:10 2025 +0100 vcl: check mpWindowImpl for nullptr Change-Id: Ib70e14cd791415f47772b1053200e9bab6925e8d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/193372 Tested-by: Caolán McNamara <[email protected]> Reviewed-by: Caolán McNamara <[email protected]> Tested-by: Jenkins CollaboraOffice <[email protected]> diff --git a/vcl/source/window/paint.cxx b/vcl/source/window/paint.cxx index 60025b44da2d..d4ba048bf49d 100644 --- a/vcl/source/window/paint.cxx +++ b/vcl/source/window/paint.cxx @@ -1251,6 +1251,8 @@ void Window::Validate() bool Window::HasPaintEvent() const { + if (!mpWindowImpl) + return false; if ( !mpWindowImpl->mbReallyVisible ) return false; commit 84d82e42ff67dd45c9cf5954d4251763bc8f63d6 Author: Andras Timar <[email protected]> AuthorDate: Thu Oct 30 22:53:15 2025 +0100 Commit: Andras Timar <[email protected]> CommitDate: Thu Oct 30 22:53:15 2025 +0100 Bump version to 24.05.6.3 Change-Id: I9a2198e59de9c5f862c8e71c175adff146159cca diff --git a/configure.ac b/configure.ac index 3120fcae6abc..c60ae57d8031 100644 --- a/configure.ac +++ b/configure.ac @@ -9,7 +9,7 @@ dnl in order to create a configure script. # several non-alphanumeric characters, those are split off and used only for the # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no idea. -AC_INIT([Collabora Office],[25.04.6.2],[],[],[https://collaboraoffice.com/]) +AC_INIT([Collabora Office],[25.04.6.3],[],[],[https://collaboraoffice.com/]) dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just fine if it is installed dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails hard
