diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-11-22 10:27:04 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-11-22 10:27:04 +0000 |
commit | 782f4b2cd10876be77aba467e605b85d46004c47 (patch) | |
tree | b70bb6be8f9c20017594f88047fd641f221d155a /svx/source/inc | |
parent | 9a855f99d51b140da3c17ea45a16a95ec4022986 (diff) |
INTEGRATION: CWS sixtyfour09 (1.30.82); FILE MERGED
2006/11/15 13:54:50 cmc 1.30.82.1: #i71562# crash on exit slideshow with right click on x86_64
Diffstat (limited to 'svx/source/inc')
-rw-r--r-- | svx/source/inc/fmshimp.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/inc/fmshimp.hxx b/svx/source/inc/fmshimp.hxx index 58707820bc51..65a324adc53a 100644 --- a/svx/source/inc/fmshimp.hxx +++ b/svx/source/inc/fmshimp.hxx @@ -4,9 +4,9 @@ * * $RCSfile: fmshimp.hxx,v $ * - * $Revision: 1.30 $ + * $Revision: 1.31 $ * - * last change: $Author: obo $ $Date: 2006-10-12 12:50:50 $ + * last change: $Author: vg $ $Date: 2006-11-22 11:27:04 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -221,7 +221,7 @@ class FmCursorActionThread; struct SAL_DLLPRIVATE CursorActionDescription { FmCursorActionThread* pThread; - sal_uInt32 nFinishedEvent; + ULONG nFinishedEvent; // we want to do the cleanup of the thread in the main thread so we post an event to ourself sal_Bool bCanceling; // this thread is being canceled @@ -234,11 +234,11 @@ class FmFormPage; struct SAL_DLLPRIVATE FmLoadAction { FmFormPage* pPage; - sal_uInt32 nEventId; + ULONG nEventId; sal_uInt16 nFlags; FmLoadAction( ) : pPage( NULL ), nEventId( 0 ), nFlags( 0 ) { } - FmLoadAction( FmFormPage* _pPage, sal_uInt16 _nFlags, sal_uInt32 _nEventId ) + FmLoadAction( FmFormPage* _pPage, sal_uInt16 _nFlags, ULONG _nEventId ) :pPage( _pPage ), nEventId( _nEventId ), nFlags( _nFlags ) { } |