From 6e760aa65535b807a02ca575a1ae6716d76e8f9d Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Thu, 27 May 2004 11:50:20 +0000 Subject: missing fixes --- include/connection.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/connection.h b/include/connection.h index 3ccaec19..8ca75cb9 100644 --- a/include/connection.h +++ b/include/connection.h @@ -7,10 +7,11 @@ class eConnection: public virtual iObject, public Connection { int ref; + ePtr m_owner; public: DEFINE_REF(eConnection); public: - eConnection(const Connection &conn): Connection(conn), ref(0) { }; + eConnection(iObject *owner, const Connection &conn): Connection(conn), ref(0), m_owner(owner) { }; virtual ~eConnection() { disconnect(); } }; -- cgit v1.2.3