diff options
author | Kurt Zenker <kz@openoffice.org> | 2007-10-09 14:19:26 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2007-10-09 14:19:26 +0000 |
commit | a71edeea4707b3bbdbbbf47c9ea64f6ef6e20280 (patch) | |
tree | 7a28f465bc9f58ea744bbf3aa7063c5831905021 /vcl | |
parent | a1d9282b6d7d31343e1cde168be483b87e78b709 (diff) |
INTEGRATION: CWS aquavcl03 (1.79.12); FILE MERGED
2007/09/06 15:42:40 pl 1.79.12.1: #i80230# make instance pointer of SalFrameProc a Window ptr explicitly
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/app/svapp.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx index 62f09798fa25..37d2403fd79f 100644 --- a/vcl/source/app/svapp.cxx +++ b/vcl/source/app/svapp.cxx @@ -4,9 +4,9 @@ * * $RCSfile: svapp.cxx,v $ * - * $Revision: 1.79 $ + * $Revision: 1.80 $ * - * last change: $Author: rt $ $Date: 2007-07-24 10:05:08 $ + * last change: $Author: kz $ $Date: 2007-10-09 15:19:26 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -1067,7 +1067,7 @@ IMPL_STATIC_LINK_NOINSTANCE( Application, PostEventHandler, void*, pCallData ) }; if( pData->mpWin && pData->mpWin->mpWindowImpl->mpFrameWindow && pEventData ) - ImplWindowFrameProc( (void*) pData->mpWin->mpWindowImpl->mpFrameWindow, NULL, (USHORT) nEvent, pEventData ); + ImplWindowFrameProc( pData->mpWin->mpWindowImpl->mpFrameWindow, NULL, (USHORT) nEvent, pEventData ); // remove this event from list of posted events, watch for destruction of internal data ::std::list< ImplPostEventPair >::iterator aIter( aPostedEventList.begin() ); |