[Libreoffice-commits] core.git: cui/source vcl/source
Yousuf Philips
philipz85 at hotmail.com
Fri Dec 11 04:20:41 PST 2015
cui/source/dialogs/about.cxx | 1 -
vcl/source/app/svapp.cxx | 6 +++---
2 files changed, 3 insertions(+), 4 deletions(-)
New commits:
commit 52856b6ea7b6b01e8a8455ed657dc16b79de6790
Author: Yousuf Philips <philipz85 at hotmail.com>
Date: Fri Dec 11 15:21:39 2015 +0400
Update hardware/OS info in About dialog
Change-Id: I2c70e88cfa2663d0b3db48c309d7cf1630bbddbd
Reviewed-on: https://gerrit.libreoffice.org/20632
Reviewed-by: Michael Meeks <michael.meeks at collabora.com>
Tested-by: Michael Meeks <michael.meeks at collabora.com>
diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx
index 07615cd..ab23cf8 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 1d2e09c..d26a350 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
More information about the Libreoffice-commits
mailing list