summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYousuf Philips <philipz85@hotmail.com>2015-12-11 15:21:39 +0400
committerMichael Meeks <michael.meeks@collabora.com>2015-12-11 12:20:14 +0000
commit52856b6ea7b6b01e8a8455ed657dc16b79de6790 (patch)
treef211f57c92b0386042d5e664000b6110e817186a
parentf1df1056399759e05bed9e9f94208671ca333d39 (diff)
Update hardware/OS info in About dialog
Change-Id: I2c70e88cfa2663d0b3db48c309d7cf1630bbddbd Reviewed-on: https://gerrit.libreoffice.org/20632 Reviewed-by: Michael Meeks <michael.meeks@collabora.com> Tested-by: Michael Meeks <michael.meeks@collabora.com>
-rw-r--r--cui/source/dialogs/about.cxx1
-rw-r--r--vcl/source/app/svapp.cxx6
2 files changed, 3 insertions, 4 deletions
diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx
index 07615cdcef6a..ab23cf8c4a81 100644
--- a/cui/source/dialogs/about.cxx
+++ b/cui/source/dialogs/about.cxx
@@ -296,7 +296,6 @@ OUString AboutDialog::GetVersionString()
sVersion += "\n";
sVersion += Application::GetHWOSConfInfo();
- sVersion += "\n";
if (EXTRA_BUILDID[0] != '\0')
{
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index 1d2e09c2d6f3..d26a350f1957 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -1197,7 +1197,7 @@ OUString Application::GetHWOSConfInfo()
ImplSVData* pSVData = ImplGetSVData();
OUStringBuffer aDetails;
- aDetails.append( "Threads " );
+ aDetails.append( "CPU Threads: " );
aDetails.append( (sal_Int32)
std::thread::hardware_concurrency() );
aDetails.append( "; " );
@@ -1208,11 +1208,11 @@ OUString Application::GetHWOSConfInfo()
else
aVersion = "-";
- aDetails.append( "Ver: " );
+ aDetails.append( "OS Version: " );
aDetails.append( aVersion );
aDetails.append( "; " );
- aDetails.append( "Render: " );
+ aDetails.append( "UI Render: " );
if ( OpenGLWrapper::isVCLOpenGLEnabled() )
aDetails.append( "GL" );
else