Kaydet (Commit) 6b5b7734 authored tarafından Ashod Nakashian's avatar Ashod Nakashian Kaydeden (comit) Michael Meeks

tdf#103185 - Add VCL backend being used to About dialog

The VCL backend is now shown on the About dialog.

Change-Id: Ib4e6b33e9c2b3ec2fca229fed8f4533227a67ac6
Reviewed-on: https://gerrit.libreoffice.org/29798Reviewed-by: 's avatarYousuf Philips <philipz85@hotmail.com>
Tested-by: 's avatarYousuf Philips <philipz85@hotmail.com>
Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMichael Meeks <michael.meeks@collabora.com>
üst 1690b840
......@@ -179,6 +179,7 @@
#define SV_APP_UIRENDER 10802
#define SV_APP_GL 10803
#define SV_APP_DEFAULT 10804
#define SV_APP_VCLBACKEND 10805
#define SV_ICON_SIZE48_START 20000
#define SV_ICON_SIZE32_START 21000
......
......@@ -1211,6 +1211,13 @@ OUString Application::GetHWOSConfInfo()
aDetails.append( VclResId(SV_APP_DEFAULT).toString() );
aDetails.append( "; " );
#ifdef LINUX
// Only linux has different backends, so don't show blank for others.
aDetails.append( VclResId(SV_APP_VCLBACKEND).toString() );
aDetails.append( GetToolkitName() );
aDetails.append( "; " );
#endif
return aDetails.makeStringAndClear();
}
......
......@@ -34,4 +34,9 @@ String SV_APP_DEFAULT
Text [ en-US ] = "default";
};
String SV_APP_VCLBACKEND
{
Text [ en-US ] = "VCL: ";
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment