diff options
author | Heiko Tietze <tietze.heiko@gmail.com> | 2022-09-13 14:38:51 +0200 |
---|---|---|
committer | Heiko Tietze <heiko.tietze@documentfoundation.org> | 2022-10-06 18:55:20 +0200 |
commit | 27f98935f9207465186da96c85467f3c005662a6 (patch) | |
tree | 2f185eebd492b7a9d7902ef24240d917fcffdcdb /unotools | |
parent | d6a5214c70b82df5cef3cbac87a255c7f56b6726 (diff) |
[API CHANGE] Resolves tdf#131136 - Remove option "Use printer metrics"
Option is out-dated and access via UI confusing
* UI access removed from Tools > Options > General (Impress, Calc)
resp. > Compatibility (Writer)
* Unit tests updated
* Tip-Of-The-Day cleaned-up
* remove UsePrtMetrics value
Change-Id: Ib645f6e1f648455e0536a437be14c2c6a7b25a49
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139863
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/config/compatibility.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/unotools/source/config/compatibility.cxx b/unotools/source/config/compatibility.cxx index affcaf5a38e0..a5ac6ea895b4 100644 --- a/unotools/source/config/compatibility.cxx +++ b/unotools/source/config/compatibility.cxx @@ -50,7 +50,6 @@ SvtCompatibilityEntry::SvtCompatibilityEntry() setValue<OUString>( Index::Module, OUString() ); /* Editable list of default values. Sync it with the SvtCompatibilityEntry::Index enum class. */ - setValue<bool>( Index::UsePrtMetrics, false ); setValue<bool>( Index::AddSpacing, false ); setValue<bool>( Index::AddSpacingAtPages, false ); setValue<bool>( Index::UseOurTabStops, false ); @@ -79,7 +78,6 @@ OUString SvtCompatibilityEntry::getName( const Index rIdx ) "Module", /* Editable list of compatibility option names. Sync it with the SvtCompatibilityEntry::Index enum class. */ - "UsePrinterMetrics", "AddSpacing", "AddSpacingAtPages", "UseOurTabStopFormat", |