diff options
author | Eike Rathke <erack@redhat.com> | 2014-03-25 14:20:37 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2014-03-25 14:23:22 +0100 |
commit | bc43fc2fb27eab02a949832626ce1a9dc380ee6b (patch) | |
tree | 57a3bc826130f86128a2497bec273740acf5829d | |
parent | 1731f6e692bb0a07a2bca4b1b190163f209d2b9e (diff) |
added Formula/Syntax/StringConversion config item, fdo#37132 related
Change-Id: I349ee1a708acfcf087680b6b07b80fb2ce911c4d
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Calc.xcs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs index a45aaa3dcce6..8feb9e95c8d1 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs @@ -1442,6 +1442,34 @@ </info> <value>false</value> </prop> + <prop oor:name="StringConversion" oor:type="xs:int"> + <!-- UIHints: Tools - Options - Spreadsheet - Formula --> + <info> + <desc>How to treat text when encountered as operand in an arithmetic operation or as argument to a function that expects a number instead.</desc> + </info> + <constraints> + <enumeration oor:value="0"> + <info> + <desc>Generate #VALUE! error</desc> + </info> + </enumeration> + <enumeration oor:value="1"> + <info> + <desc>Treat as zero</desc> + </info> + </enumeration> + <enumeration oor:value="2"> + <info> + <desc>Convert only unambiguous</desc> + </info> + </enumeration> + <enumeration oor:value="3"> + <info> + <desc>Convert also locale dependent</desc> + </info> + </enumeration> + </constraints> + </prop> </group> <group oor:name="Load"> <info> |