summaryrefslogtreecommitdiff
path: root/autodoc/source/parser/adoc/cx_a_std.cxx
diff options
context:
space:
mode:
authorNikolai Pretzell <np@openoffice.org>2002-05-14 08:02:21 +0000
committerNikolai Pretzell <np@openoffice.org>2002-05-14 08:02:21 +0000
commit83e726c6a5d8c15e55c991854d60fc6d64744a2f (patch)
tree6f7a4ebe5204d699b2d775b9fb2460814b252f60 /autodoc/source/parser/adoc/cx_a_std.cxx
parent69ad19e30257a7c14e7a50cfe7054e98ea5289a3 (diff)
#98964#, New layout for Autodoc-IDL-docu and some fixes for gcc
Diffstat (limited to 'autodoc/source/parser/adoc/cx_a_std.cxx')
-rw-r--r--autodoc/source/parser/adoc/cx_a_std.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/autodoc/source/parser/adoc/cx_a_std.cxx b/autodoc/source/parser/adoc/cx_a_std.cxx
index c6fbf996ee0b..93486cca3274 100644
--- a/autodoc/source/parser/adoc/cx_a_std.cxx
+++ b/autodoc/source/parser/adoc/cx_a_std.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: cx_a_std.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: np $ $Date: 2002-03-08 14:45:28 $
+ * last change: $Author: np $ $Date: 2002-05-14 09:02:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -225,7 +225,8 @@ Context_AdocStd::PerformStatusFunction( uintt i_nStatusSignal,
{
case nF_fin_Error:
{
- udmstri sChar( &io_rText.CurChar(), 1 );
+ char cCC = io_rText.CurChar();
+ udmstri sChar( &cCC, 1 );
throw X_Parser(X_Parser::x_InvalidChar, sChar, udmstri::Null_(), 0);
} break;
case nF_fin_Ignore:
@@ -272,7 +273,8 @@ Context_AdocStd::PerformStatusFunction( uintt i_nStatusSignal,
break;
default:
{
- udmstri sChar( &io_rText.CurChar(), 1 );
+ char cCC = io_rText.CurChar();
+ udmstri sChar( &cCC, 1 );
throw X_Parser(X_Parser::x_InvalidChar, sChar, udmstri::Null_(), 0);
}
} // end switch (i_nStatusSignal)