diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2004-05-27 11:58:37 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2004-05-27 11:58:37 +0000 |
| commit | e57c2c1aff8860811a7f010dbeb3d16d80295aba (patch) | |
| tree | 225b3853a442d319f9a65e2871b20b9b6692cc4e /lib/nav | |
| parent | de282f97525595a7f5875461b8be520731eea561 (diff) | |
| download | enigma2-e57c2c1aff8860811a7f010dbeb3d16d80295aba.tar.gz enigma2-e57c2c1aff8860811a7f010dbeb3d16d80295aba.zip | |
add virtual destructor because of iObject
Diffstat (limited to 'lib/nav')
| -rw-r--r-- | lib/nav/playlist.cpp | 4 | ||||
| -rw-r--r-- | lib/nav/playlist.h | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lib/nav/playlist.cpp b/lib/nav/playlist.cpp index 48919922..7a96bcda 100644 --- a/lib/nav/playlist.cpp +++ b/lib/nav/playlist.cpp @@ -5,3 +5,7 @@ DEFINE_REF(ePlaylist); ePlaylist::ePlaylist(): ref(0) { } + +ePlaylist::~ePlaylist() +{ +} diff --git a/lib/nav/playlist.h b/lib/nav/playlist.h index f07ecb4b..6d89406e 100644 --- a/lib/nav/playlist.h +++ b/lib/nav/playlist.h @@ -5,11 +5,12 @@ #include <lib/base/object.h> #include <lib/service/iservice.h> -class ePlaylist: public virtual iObject, public std::list<eServiceReference> +class ePlaylist: public iObject, public std::list<eServiceReference> { DECLARE_REF; public: ePlaylist(); + virtual ~ePlaylist(); std::list<eServiceReference>::iterator m_current; }; |
