diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2001-04-19 08:01:56 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2001-04-19 08:01:56 +0000 |
commit | 1a4c3812a345dfad9da310c58e188f18db26f84f (patch) | |
tree | b483a8b854918a0aa920838c659d8de458773d75 /sc | |
parent | 65c160f3ea83aa8769436016c93bb2f73471c447 (diff) |
Changed type casting
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/excdoc.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/filter/excel/excdoc.cxx b/sc/source/filter/excel/excdoc.cxx index e70dc4259e96..c287700dd06a 100644 --- a/sc/source/filter/excel/excdoc.cxx +++ b/sc/source/filter/excel/excdoc.cxx @@ -2,9 +2,9 @@ * * $RCSfile: excdoc.cxx,v $ * - * $Revision: 1.18 $ + * $Revision: 1.19 $ * - * last change: $Author: dr $ $Date: 2001-04-12 08:44:47 $ + * last change: $Author: vg $ $Date: 2001-04-19 09:01:56 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -158,7 +158,7 @@ inline void* DefRowXFs::Set( UINT16 nR, UINT16 nXF ) inline void DefRowXFs::Get( const void* p, UINT16& rR, UINT16& rXF ) { - rR = ( UINT16 ) p; + rR = ( UINT16 ) ( UINT32 ) p; rXF = ( UINT16 ) ( ((UINT32)p) >> 16 ); } |