summaryrefslogtreecommitdiff
path: root/svx/source/form
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-07-10 13:56:10 +0000
committerOliver Bolte <obo@openoffice.org>2006-07-10 13:56:10 +0000
commit6c1f168a6d972ac213eeed09119b13edebeec891 (patch)
tree11d2e42290fba753bc48fdb4f14c35fd174f6607 /svx/source/form
parent7de663c7aeea5cb2769dc3f0b5ca045696e8dc17 (diff)
INTEGRATION: CWS qiq (1.4.412); FILE MERGED
2006/06/30 13:34:44 fs 1.4.412.3: #i51143# RID_STR_SVT_SQL_CYCLIC_SUB_QUERIES 2006/06/27 12:33:06 fs 1.4.412.2: RESYNC: (1.4-1.5); FILE MERGED 2006/05/19 08:09:35 fs 1.4.412.1: #i51143# more error messages to be provided by a ParseContext
Diffstat (limited to 'svx/source/form')
-rw-r--r--svx/source/form/ParseContext.cxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/svx/source/form/ParseContext.cxx b/svx/source/form/ParseContext.cxx
index ba7973bc4c36..9b8b777c4f45 100644
--- a/svx/source/form/ParseContext.cxx
+++ b/svx/source/form/ParseContext.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: ParseContext.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: hr $ $Date: 2006-06-19 15:51:02 $
+ * last change: $Author: obo $ $Date: 2006-07-10 14:56:10 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -96,8 +96,11 @@ OSystemParseContext::~OSystemParseContext()
case ERROR_INVALID_DATE_COMPARE: aMsg = SVX_RES(RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID); break;
case ERROR_INVALID_REAL_COMPARE: aMsg = SVX_RES(RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID); break;
case ERROR_INVALID_TABLE: aMsg = SVX_RES(RID_STR_SVT_SQL_SYNTAX_TABLE); break;
+ case ERROR_INVALID_TABLE_OR_QUERY: aMsg = SVX_RES(RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY); break;
case ERROR_INVALID_COLUMN: aMsg = SVX_RES(RID_STR_SVT_SQL_SYNTAX_COLUMN); break;
- case ERROR_INVALID_TABLE_EXIST: aMsg = SVX_RES(RID_STR_SVT_SQL_TABLE_EXISTS); break;
+ case ERROR_INVALID_TABLE_EXIST: aMsg = SVX_RES(RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS); break;
+ case ERROR_INVALID_QUERY_EXIST: aMsg = SVX_RES(RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS); break;
+ case ERROR_CYCLIC_SUB_QUERIES: aMsg = SVX_RES(RID_STR_SVT_SQL_CYCLIC_SUB_QUERIES); break;
case ERROR_NONE: break;
}
return aMsg;