INTEGRATION: CWS fwkc03fixes (1.3.20); FILE MERGED

2006/04/28 13:11:41 mav 1.3.20.1: #134455# fix objects crosslinking
This commit is contained in:
Rüdiger Timm
2006-05-05 08:57:03 +00:00
parent 927045b27c
commit d692c94d33

View File

@@ -4,9 +4,9 @@
* *
* $RCSfile: iipaobj.hxx,v $ * $RCSfile: iipaobj.hxx,v $
* *
* $Revision: 1.3 $ * $Revision: 1.4 $
* *
* last change: $Author: rt $ $Date: 2005-09-08 18:56:10 $ * last change: $Author: rt $ $Date: 2006-05-05 09:57:03 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
@@ -39,6 +39,8 @@
#include "stdafx.h" #include "stdafx.h"
#include <oleidl.h> #include <oleidl.h>
#include <osl/interlck.h>
#include <rtl/ref.hxx>
class EmbedDocument_Impl; class EmbedDocument_Impl;
class DocumentHolder; class DocumentHolder;
@@ -48,7 +50,7 @@ class CIIAObj
public: public:
CIIAObj(EmbedDocument_Impl *,DocumentHolder *); CIIAObj( DocumentHolder * );
~CIIAObj(); ~CIIAObj();
/* IUnknown methods */ /* IUnknown methods */
@@ -69,9 +71,8 @@ public:
private: private:
ULONG m_cRef; oslInterlockedCount m_refCount;
EmbedDocument_Impl *m_pEmbDoc; ::rtl::Reference< DocumentHolder > m_rDocHolder;
DocumentHolder *m_pDocHolder;
}; };