summaryrefslogtreecommitdiff
path: root/cosv/inc
diff options
context:
space:
mode:
authorNikolai Pretzell <np@openoffice.org>2002-03-22 09:22:47 +0000
committerNikolai Pretzell <np@openoffice.org>2002-03-22 09:22:47 +0000
commit0abfc2377adb70819cca6f789b366eed5c6a2d9d (patch)
tree916872bc8d022ff5842522c38a2f38c1486829da /cosv/inc
parentc89a53918be9d8dacafdb97ac8e7a0c3c0b3eeed (diff)
Move autodoc to OpenOffice.org
Diffstat (limited to 'cosv/inc')
-rw-r--r--cosv/inc/cosv/comfunc.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/cosv/inc/cosv/comfunc.hxx b/cosv/inc/cosv/comfunc.hxx
index 63ccf425e134..ea9badcb454a 100644
--- a/cosv/inc/cosv/comfunc.hxx
+++ b/cosv/inc/cosv/comfunc.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: comfunc.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: np $ $Date: 2002-03-22 10:19:07 $
+ * last change: $Author: np $ $Date: 2002-03-22 10:22:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -117,7 +117,7 @@ switch_endian( NUMTYPE & o_rNumber,
const NUMTYPE & i_rNumber )
{
char * pFront = reinterpret_cast< char* >(&o_rNumber);
- const char * pBack = reinterpret_cast< char* >(&i_rNumber) + (sizeof(NUMTYPE) - 1);
+ const char * pBack = reinterpret_cast< const char* >(&i_rNumber) + (sizeof(NUMTYPE) - 1);
for ( unsigned int p = sizeof(NUMTYPE); p != 0; --p )
{