summaryrefslogtreecommitdiff
path: root/vcl/source/app/svapp.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/app/svapp.cxx')
-rw-r--r--vcl/source/app/svapp.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index 0f5780801b76..ef0847d56d5b 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -1189,7 +1189,7 @@ OUString Application::GetHWOSConfInfo()
ImplSVData* pSVData = ImplGetSVData();
OUStringBuffer aDetails;
- aDetails.append( "CPU Threads: " );
+ aDetails.append( VclResId(SV_APP_CPUTHREADS).toString() );
aDetails.append( (sal_Int32)
std::thread::hardware_concurrency() );
aDetails.append( "; " );
@@ -1200,15 +1200,15 @@ OUString Application::GetHWOSConfInfo()
else
aVersion = "-";
- aDetails.append( "OS Version: " );
+ aDetails.append( VclResId(SV_APP_OSVERSION).toString() );
aDetails.append( aVersion );
aDetails.append( "; " );
- aDetails.append( "UI Render: " );
+ aDetails.append( VclResId(SV_APP_UIRENDER).toString() );
if ( OpenGLWrapper::isVCLOpenGLEnabled() )
- aDetails.append( "GL" );
+ aDetails.append( VclResId(SV_APP_GL).toString() );
else
- aDetails.append( "default" );
+ aDetails.append( VclResId(SV_APP_DEFAULT).toString() );
aDetails.append( "; " );
return aDetails.makeStringAndClear();