summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-04-19 12:45:49 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-04-19 12:45:49 +0000
commit606f2a0550beae8de89acde1d130f8b88033cf3b (patch)
treed6d911facc5ca6483c56b3ad9883beee8936f9fe /idlc
parentab1af32d986fd54c80112855f6eb7e3c6ee5c823 (diff)
INTEGRATION: CWS sb49 (1.11.2); FILE MERGED
2006/03/15 16:21:32 sb 1.11.2.1: #i62098# Added check that no two service ctors have the same signature; along the way, added some helper functions and some missing const qualifiers.
Diffstat (limited to 'idlc')
-rw-r--r--idlc/source/errorhandler.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/idlc/source/errorhandler.cxx b/idlc/source/errorhandler.cxx
index 462dbb572819..d82a6bc39887 100644
--- a/idlc/source/errorhandler.cxx
+++ b/idlc/source/errorhandler.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: errorhandler.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: rt $ $Date: 2006-03-09 10:48:41 $
+ * last change: $Author: hr $ $Date: 2006-04-19 13:45:49 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -172,6 +172,8 @@ static const sal_Char* errorCodeToMessage(ErrorCode eCode)
return
"an unpublished entity cannot be used in the declaration of a"
" published entity: ";
+ case EIDL_SIMILAR_CONSTRUCTORS:
+ return "two constructors have identical lists of parameter types";
}
return "unknown errror";
}