diff options
author | Heiko Tietze <heiko.tietze@documentfoundation.org> | 2020-07-21 08:30:35 +0200 |
---|---|---|
committer | Heiko Tietze <heiko.tietze@documentfoundation.org> | 2020-07-21 10:59:15 +0200 |
commit | 534c59c8bc951b610adb2882afb78a64e8914f73 (patch) | |
tree | b35ac92c68535ceb239dde3f43443a51eda2927f /framework | |
parent | 63726cb536e0d3d3c2a5199f6d19f354aef8030b (diff) |
Revert "Disable flavour in title bar for Linux."
This reverts commit 5a782225adc069a9b39986f7ced37eb78e542ae3.
Reason for revert: https://blog.documentfoundation.org/blog/2020/07/20/update-on-marketing-and-communication-plans-for-the-libreoffice-7-x-series/
Change-Id: I2af7fdb4959ef0b81160ec52510e29c0e65401dd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99056
Tested-by: Jenkins
Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/fwe/helper/titlehelper.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/fwe/helper/titlehelper.cxx b/framework/source/fwe/helper/titlehelper.cxx index e1a9738267d0..d02287da16b4 100644 --- a/framework/source/fwe/helper/titlehelper.cxx +++ b/framework/source/fwe/helper/titlehelper.cxx @@ -518,10 +518,10 @@ void TitleHelper::impl_updateTitleForFrame (const css::uno::Reference< css::fram // document name (from the above "component title"). impl_appendProductName (sTitle); -#if defined(WNT) || defined(MACOSX) if (!std::string_view(PRODUCTFLAVOR).empty()) + { sTitle.append(" " PRODUCTFLAVOR); -#endif + } impl_appendModuleName (sTitle); impl_appendDebugVersion (sTitle); |