[Libreoffice-commits] core.git: cui/source

Heiko Tietze (via logerrit) logerrit at kemper.freedesktop.org
Thu May 7 13:24:08 UTC 2020


 cui/source/dialogs/about.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c206fd36389d0d96132c055dcb2afb2d6e02a9b5
Author:     Heiko Tietze <tietze.heiko at gmail.com>
AuthorDate: Thu May 7 11:59:43 2020 +0200
Commit:     Heiko Tietze <heiko.tietze at documentfoundation.org>
CommitDate: Thu May 7 15:23:25 2020 +0200

    Copy build ID in full length
    
    Change-Id: Ic64f62cb0acc30efaaf24f9ce17c1f2d983c4e24
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93628
    Tested-by: Jenkins
    Reviewed-by: Heiko Tietze <heiko.tietze at documentfoundation.org>

diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx
index 953670ffa7ae..33d343b00a4f 100644
--- a/cui/source/dialogs/about.cxx
+++ b/cui/source/dialogs/about.cxx
@@ -260,7 +260,7 @@ IMPL_LINK_NOARG(AboutDialog, HandleClick, weld::Button &, void) {
 
   OUString sInfo;
   sInfo += "Version: " + m_pVersionLabel->get_label() + "\n";
-  sInfo += "Build ID: " + m_pBuildLabel->get_label() + "\n";
+  sInfo += "Build ID: " + GetBuildString() + "\n";
   sInfo += m_pEnvLabel->get_label();
   sInfo += m_pUILabel->get_label() + "\n";
   sInfo += "Locale: " + m_pLocaleLabel->get_label() + "\n";


More information about the Libreoffice-commits mailing list