summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 11:03:01 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 11:03:01 +0000
commit90dab653fcd2f829c350b07383a47b0c3f9587f6 (patch)
treeae0e8fccc3b9e17799aef6bfd3dce5456230d52b
parent3228b5dbf81897b8bd4a310ed9d92acee13674e0 (diff)
INTEGRATION: CWS warnings01 (1.4.4); FILE MERGED
2005/10/18 08:36:09 np 1.4.4.1: #i53898#
-rw-r--r--autodoc/source/parser/cpp/cx_c_sub.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/autodoc/source/parser/cpp/cx_c_sub.cxx b/autodoc/source/parser/cpp/cx_c_sub.cxx
index da9340c0b28a..5dc6df7fe62b 100644
--- a/autodoc/source/parser/cpp/cx_c_sub.cxx
+++ b/autodoc/source/parser/cpp/cx_c_sub.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: cx_c_sub.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 18:18:57 $
+ * last change: $Author: hr $ $Date: 2006-06-19 12:03:01 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -143,7 +143,7 @@ Context_ConstNumeric::ReadCharChain(CharacterSource & io_rText)
do {
do {
- cNext = tolower(io_rText.MoveOn());
+ cNext = static_cast<char>( tolower(io_rText.MoveOn()) );
} while (cNext != 'e' AND isalnum(cNext) OR cNext == '.');
if (cNext == 'e')
{