diff options
author | Gleb Popov <6yearold@gmail.com> | 2020-10-22 14:16:10 +0400 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2020-10-22 15:15:22 +0200 |
commit | 5bccd9318a6357e043b798034dcca3bf94a1ec5f (patch) | |
tree | 69a44e10f547fa51ca7c15619c53095918dff958 /vcl/source | |
parent | 606c65c90cb3e8abdd74540195b7cb01ba88adc8 (diff) |
Add __FreeBSD__ case to the #ifdef conditional.
Change-Id: I77e69e7f82e7a24870a68d13abb365a7c2593564
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104653
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/app/svapp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx index 7f27cf4d5601..150caea518ee 100644 --- a/vcl/source/app/svapp.cxx +++ b/vcl/source/app/svapp.cxx @@ -1182,7 +1182,7 @@ OUString Application::GetHWOSConfInfo(const int bSelection, const bool bLocalize #endif appendDetails(u"", Localize(SV_APP_DEFAULT, bLocalize)); -#if (defined LINUX || defined _WIN32 || defined MACOSX) +#if (defined LINUX || defined _WIN32 || defined MACOSX || defined __FreeBSD__) appendDetails(u"; ", SV_APP_VCLBACKEND + GetToolkitName()); #endif } |