summaryrefslogtreecommitdiff
path: root/sc/source/core/src
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-06-13 08:06:51 +0000
committerOliver Bolte <obo@openoffice.org>2007-06-13 08:06:51 +0000
commit30977e68e8c12607cda444d31c502d7022b7edc4 (patch)
tree9c13dd0fa6baf4b92c63e4a53213a0038aa07bc3 /sc/source/core/src
parent810f7cfa2d5dc4f356b891cd2b4212d1c3545b26 (diff)
INTEGRATION: CWS jgarrays (1.51.6); FILE MERGED
2007/05/22 16:29:01 er 1.51.6.3: SC_OPCODE_ARRAY_COL_SEP must be ';' semicolon 2007/05/22 15:32:02 jodygoldberg 1.51.6.2: Issue number: 21149 Submitted by: jodygoldberg@openoffice.org Reviewed by: er drops the O(N^2) algorithm for DDE matrix export in favour of just doing it inline. 2007/04/26 12:26:00 jodygoldberg 1.51.6.1: Issue number: 32342 Submitted by: jodygoldberg Reviewed by: er,dr Some small updates to the patch in issuezilla, resynced to m210. It still needs the small re-factoring er suggested re: ScCompiler::AppendString
Diffstat (limited to 'sc/source/core/src')
-rw-r--r--sc/source/core/src/compiler.src12
1 files changed, 10 insertions, 2 deletions
diff --git a/sc/source/core/src/compiler.src b/sc/source/core/src/compiler.src
index 033558d93978..7ccb2dba086d 100644
--- a/sc/source/core/src/compiler.src
+++ b/sc/source/core/src/compiler.src
@@ -4,9 +4,9 @@
*
* $RCSfile: compiler.src,v $
*
- * $Revision: 1.51 $
+ * $Revision: 1.52 $
*
- * last change: $Author: ihi $ $Date: 2007-04-19 16:23:51 $
+ * last change: $Author: obo $ $Date: 2007-06-13 09:06:51 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -47,6 +47,10 @@ Resource RID_SC_FUNCTION_NAMES
};
String SC_OPCODE_OPEN { Text = "(" ; };
String SC_OPCODE_CLOSE { Text = ")" ; };
+ String SC_OPCODE_ARRAY_OPEN { Text = "{" ; };
+ String SC_OPCODE_ARRAY_CLOSE { Text = "}" ; };
+ String SC_OPCODE_ARRAY_ROW_SEP { Text = "|" ; };
+ String SC_OPCODE_ARRAY_COL_SEP { Text = ";" ; };
String SC_OPCODE_SEP { Text = ";" ; };
String SC_OPCODE_PERCENT_SIGN { Text = "%" ; };
String SC_OPCODE_ADD { Text = "+" ; };
@@ -1159,6 +1163,10 @@ Resource RID_SC_FUNCTION_NAMES_ENGLISH
String SC_OPCODE_CHOSE { Text = "CHOOSE" ; };
String SC_OPCODE_OPEN { Text = "(" ; };
String SC_OPCODE_CLOSE { Text = ")" ; };
+ String SC_OPCODE_ARRAY_OPEN { Text = "{" ; };
+ String SC_OPCODE_ARRAY_CLOSE { Text = "}" ; };
+ String SC_OPCODE_ARRAY_ROW_SEP { Text = "|" ; };
+ String SC_OPCODE_ARRAY_COL_SEP { Text = ";" ; };
String SC_OPCODE_SEP { Text = ";" ; };
String SC_OPCODE_PERCENT_SIGN { Text = "%" ; };
String SC_OPCODE_ADD { Text = "+" ; };