summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>2023-12-14 11:52:56 +0100
committerSamuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>2023-12-18 09:24:35 +0100
commita0782355c212b8237a6bfa3ce1c5bb010bd4caba (patch)
treef86cb847fb5b68de955df3a2f4378372fe80b5a0 /qadevOOo
parentd7577174b541e68158d228aa41192227c10a252f (diff)
[API CHANGE] tdf#158041 Remove unused table printing option from sw
"for now it was decided that tables should always be printed" -> make this decision from 2015 permanent Change-Id: Ica5958a74ec6766040ab59f2c91224b75df4d807 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160766 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/tests/java/ifc/text/_PrintSettings.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/qadevOOo/tests/java/ifc/text/_PrintSettings.java b/qadevOOo/tests/java/ifc/text/_PrintSettings.java
index a1736adab835..9cbf1fdb53d2 100644
--- a/qadevOOo/tests/java/ifc/text/_PrintSettings.java
+++ b/qadevOOo/tests/java/ifc/text/_PrintSettings.java
@@ -43,5 +43,17 @@ import lib.MultiPropertyTest;
*/
public class _PrintSettings extends MultiPropertyTest {
+ /**
+ * This property returns always true.
+ */
+ public void _PrintTables() {
+ testProperty("PrintTables", new PropertyTester() {
+ @Override
+ protected Object getNewValue(String p, Object old) {
+ return Boolean.TRUE;
+ }
+ }) ;
+ }
+
}