From 4497b12f586ed668bbe764ff526a13aa375b82cc Mon Sep 17 00:00:00 2001 From: Petr Mladek Date: Thu, 29 Nov 2012 18:21:30 +0100 Subject: add --with-extra-buildid configure option It can be used to show extra build indentification in the about dialog just under the version string. The plan is to show information about tinderboxes and make the life easier for QA guys. Change-Id: I4714a34cf13492c7bb92798b4b6d11385093f223 --- cui/source/dialogs/about.cxx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'cui/source/dialogs/about.cxx') diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx index 0e13ca9e6228..ddc3b46f0f61 100644 --- a/cui/source/dialogs/about.cxx +++ b/cui/source/dialogs/about.cxx @@ -402,6 +402,11 @@ rtl::OUString AboutDialog::GetVersionString() sVersion += m_sBuildStr.replaceAll("$BUILDID", sBuildId); } +#ifdef EXTRA_BUILDID + sVersion += "\n"; + sVersion += EXTRA_BUILDID; +#endif + return sVersion; } -- cgit