diff options
-rw-r--r-- | cui/source/dialogs/about.cxx | 1 | ||||
-rw-r--r-- | vcl/source/app/svapp.cxx | 6 |
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 |