diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2004-06-02 01:11:59 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2004-06-02 01:11:59 +0000 |
| commit | 3bad22d5566624804a73b3791980bab2d84c8266 (patch) | |
| tree | eb99b584b542cdc2ab264d8439ba771a117f0cb2 /include | |
| parent | d6f6602d7cea3a7899990fe79216af7d98d05917 (diff) | |
| download | enigma2-3bad22d5566624804a73b3791980bab2d84c8266.tar.gz enigma2-3bad22d5566624804a73b3791980bab2d84c8266.zip | |
- disabled gui for a moment
- beginning of GDI2 work (region/fill/line works)
- fixed smartptr self assignment
- finally replaced "int ref" by something with a constructor
Diffstat (limited to 'include')
| -rw-r--r-- | include/connection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/connection.h b/include/connection.h index 8ca75cb9..a085650d 100644 --- a/include/connection.h +++ b/include/connection.h @@ -11,7 +11,7 @@ class eConnection: public virtual iObject, public Connection public: DEFINE_REF(eConnection); public: - eConnection(iObject *owner, const Connection &conn): Connection(conn), ref(0), m_owner(owner) { }; + eConnection(iObject *owner, const Connection &conn): Connection(conn), m_owner(owner) { }; virtual ~eConnection() { disconnect(); } }; |
