diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-12-17 16:00:50 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-12-17 16:00:50 +0000 |
| commit | 7eab308715ea1130166915574e3b691e08eb4482 (patch) | |
| tree | 0068c4e8eb07c80cade3408d2fd2b10baccdf012 /lib/gui/elistbox.cpp | |
| parent | 456ac28d25e861b4e661c88d573e3258a53d67a5 (diff) | |
| download | enigma2-7eab308715ea1130166915574e3b691e08eb4482.tar.gz enigma2-7eab308715ea1130166915574e3b691e08eb4482.zip | |
GUI: child windows will no long be removed on parent destroy. listbox/window now destroy their private parents. python does no longer use thisown = 0.
Diffstat (limited to 'lib/gui/elistbox.cpp')
| -rw-r--r-- | lib/gui/elistbox.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/gui/elistbox.cpp b/lib/gui/elistbox.cpp index 013a3103..21394de5 100644 --- a/lib/gui/elistbox.cpp +++ b/lib/gui/elistbox.cpp @@ -20,6 +20,9 @@ eListbox::eListbox(eWidget *parent) eListbox::~eListbox() { + if (m_scrollbar) + delete m_scrollbar; + ePtr<eActionMap> ptr; eActionMap::getInstance(ptr); ptr->unbindAction(this, 0); |
