cui/source/dialogs/about.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit ca33fc45edbc9e7f330f14513c53f83c73e78835 Author: Andras Timar <andras.ti...@collabora.com> AuthorDate: Wed Apr 30 12:26:15 2025 +0200 Commit: Miklos Vajna <vmik...@collabora.com> CommitDate: Wed Apr 30 15:44:21 2025 +0200 Fix git hash link in About box Change-Id: Ieccb41f3ca9909c452101883d4c295815ee9d185 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/184820 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com> Reviewed-by: Miklos Vajna <vmik...@collabora.com> diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx index 9a3e4d8e33ff..361458e656cf 100644 --- a/cui/source/dialogs/about.cxx +++ b/cui/source/dialogs/about.cxx @@ -78,8 +78,8 @@ AboutDialog::AboutDialog(weld::Window *pParent) OUString sbuildId = GetBuildString(); if (IsStringValidGitHash(sbuildId)) { const tools::Long nMaxChar = 25; - m_pBuildLabel->set_uri("https://gerrit.libreoffice.org/gitweb?p=core.git;a=log;h=" - + sbuildId); + m_pBuildLabel->set_uri("https://git.libreoffice.org/core/+log/" + + sbuildId + "/"); m_pBuildLabel->set_label(sbuildId.getLength() > nMaxChar ? sbuildId.replaceAt( nMaxChar, sbuildId.getLength() - nMaxChar, u"...") : sbuildId);