diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2004-05-27 11:50:20 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2004-05-27 11:50:20 +0000 |
| commit | 6e760aa65535b807a02ca575a1ae6716d76e8f9d (patch) | |
| tree | 1687874e053d3dba13b8dbb297b23783092c815a /include | |
| parent | 4c54cecb6020cde399b564f17dacb048b937018a (diff) | |
| download | enigma2-6e760aa65535b807a02ca575a1ae6716d76e8f9d.tar.gz enigma2-6e760aa65535b807a02ca575a1ae6716d76e8f9d.zip | |
missing fixes
Diffstat (limited to 'include')
| -rw-r--r-- | include/connection.h | 3 |
1 files changed, 2 insertions, 1 deletions
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<iObject> 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(); } }; |
