summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatarina Behrens <Katarina.Behrens@cib.de>2019-06-20 15:53:38 +0200
committerKatarina Behrens <Katarina.Behrens@cib.de>2019-06-20 15:59:43 +0200
commit62af57f74a4e66bb22e1a171fd0019afc91f85f6 (patch)
treeb610934825932177ddb4fc26129d32d0005f0a41
parentee5cb12f07b7932883d5a77fdebae4e830932824 (diff)
Always use git hash as a link to the changelog
instead of build version (--with-build-version) which can be an arbitrary string, unrelated to git commit hashes Change-Id: I5b2f3d951de6a8da6b7146aae6ed7a5fafb78aca
-rw-r--r--cui/source/dialogs/about.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx
index df8a0b131319..af4242f7a98a 100644
--- a/cui/source/dialogs/about.cxx
+++ b/cui/source/dialogs/about.cxx
@@ -153,7 +153,8 @@ IMPL_LINK( AboutDialog, HandleClick, Button*, pButton, void )
void AboutDialog::SetBuildIdLink()
{
- const OUString buildId = GetBuildId();
+ OUString sDefault;
+ OUString buildId(utl::Bootstrap::getBuildIdData(sDefault));
if (IsStringValidGitHash(buildId))
{