diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-04-07 07:30:31 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-04-07 07:30:31 +0000 |
commit | efebf211bafa6405d3e97be4f4ab08ea991ea7aa (patch) | |
tree | 57b7dfcd3cebc960ed7751573606f4bd92bed3b0 /sfx2 | |
parent | 37951fef2150d105a639f8d7a3908fa507ca8f6d (diff) |
INTEGRATION: CWS sixtyfour04 (1.3.170); FILE MERGED
2006/03/10 14:30:49 cmc 1.3.170.1: #i62566# cast crops pointer value
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/doc/objembed.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/doc/objembed.cxx b/sfx2/source/doc/objembed.cxx index 3c593517d787..209b99a9072c 100644 --- a/sfx2/source/doc/objembed.cxx +++ b/sfx2/source/doc/objembed.cxx @@ -4,9 +4,9 @@ * * $RCSfile: objembed.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-07 18:46:21 $ + * last change: $Author: vg $ $Date: 2006-04-07 08:30:31 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -81,7 +81,7 @@ SfxObjectShell* SfxObjectShell::GetParentShellByModel_Impl() if ( xParentTunnel.is() ) { SvGlobalName aSfxIdent( SFX_GLOBAL_CLASSID ); - pResult = (SfxObjectShell*)(sal_Int32)( xParentTunnel->getSomething( + pResult = reinterpret_cast<SfxObjectShell*>(xParentTunnel->getSomething( uno::Sequence< sal_Int8 >( aSfxIdent.GetByteSequence() ) ) ); } } |