- add more python stuff
[enigma2.git] / lib / gui / ewindow.h
index 671a00791db0b5e1883bc332d51c1b91fe664342..f5bcd51af72e3930bf394032b8890eafd4c4cdd2 100644 (file)
@@ -11,6 +11,7 @@ class eWindow: public eWidget
        friend class eWindowStyle;
 public:
        eWindow(eWidgetDesktop *desktop);
+       ~eWindow();
        void setTitle(const std::string &string);
        eWidget *child() { return m_child; }
 protected:
@@ -22,7 +23,6 @@ protected:
 private:
        std::string m_title;
        eWidget *m_child;
-       ePtr<eWindowStyle> m_style;
 };
 
 #endif