- added ListBoxContents: based on std::list<std::string> and PyList with Strings
[enigma2.git] / lib / gui / elistbox.h
index ac45a33207e153ce6bfa9f8b11c40c05cac3d5ef..4c06e2886a5cb4eef5ae8c5192bcf4b7f328f833 100644 (file)
@@ -7,6 +7,8 @@
 class iListboxContent: public iObject
 {
 public:
+       virtual ~iListboxContent()=0;
+       
                /* indices go from 0 to size().
                   the end is reached when the cursor is on size(), 
                   i.e. one after the last entry (this mimics 
@@ -62,5 +64,4 @@ private:
        ePtr<iListboxContent> m_content;
 };
 
-
 #endif