diff options
author | Oliver Bolte <obo@openoffice.org> | 2007-01-23 06:33:07 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2007-01-23 06:33:07 +0000 |
commit | f670a64376d227cc0abd8fc4a7582f7ebd6f849e (patch) | |
tree | fe24d816ea53e67508c4ba01c41b2027b3465f86 /embeddedobj/source/msole/mtnotification.hxx | |
parent | 17699022c53ae0239f72c41a3ccb15c9bf92ef49 (diff) |
INTEGRATION: CWS fwk59 (1.3.22); FILE MERGED
2007/01/04 16:05:11 mav 1.3.22.1: #i71349# introduce a better workaround for AcrobatReader 7.0.8 object
Diffstat (limited to 'embeddedobj/source/msole/mtnotification.hxx')
-rw-r--r-- | embeddedobj/source/msole/mtnotification.hxx | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/embeddedobj/source/msole/mtnotification.hxx b/embeddedobj/source/msole/mtnotification.hxx index ee8175d43ae6..db0b49905c0d 100644 --- a/embeddedobj/source/msole/mtnotification.hxx +++ b/embeddedobj/source/msole/mtnotification.hxx @@ -4,9 +4,9 @@ * * $RCSfile: mtnotification.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: obo $ $Date: 2006-10-13 11:30:47 $ + * last change: $Author: obo $ $Date: 2007-01-23 07:33:07 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -44,16 +44,23 @@ #include <cppuhelper/weakref.hxx> #endif +#include <rtl/ref.hxx> + class OleEmbeddedObject; +#define OLECOMP_ONVIEWCHANGE 1 +#define OLECOMP_ONCLOSE 2 + class MainThreadNotificationRequest { OleEmbeddedObject* m_pObject; ::com::sun::star::uno::WeakReference< ::com::sun::star::embed::XEmbeddedObject > m_xObject; + + sal_uInt16 m_nNotificationType; sal_uInt32 m_nAspect; public: - MainThreadNotificationRequest( OleEmbeddedObject* pObj, sal_uInt32 nAspect ); + MainThreadNotificationRequest( const ::rtl::Reference< OleEmbeddedObject >& xObj, sal_uInt16 nNotificationType, sal_uInt32 nAspect = 0 ); static long worker( MainThreadNotificationRequest*, MainThreadNotificationRequest* ); |