summaryrefslogtreecommitdiff
path: root/utils/themeeditor/gui/configdocument.h
diff options
context:
space:
mode:
authorRobert Bieber <robby@bieberphoto.com>2010-06-17 18:47:03 +0000
committerRobert Bieber <robby@bieberphoto.com>2010-06-17 18:47:03 +0000
commita9b30ee002d828f3f5e8f77ce6d132bb353ed31f (patch)
treeee6ab34ad2ffd60f5ba3e6f0dbbf7af62bf5b423 /utils/themeeditor/gui/configdocument.h
parent8e8c8dce51c9b1cd5aa49e2d1edec908e2dfcdc6 (diff)
downloadrockbox-a9b30ee002d828f3f5e8f77ce6d132bb353ed31f.zip
rockbox-a9b30ee002d828f3f5e8f77ce6d132bb353ed31f.tar.gz
rockbox-a9b30ee002d828f3f5e8f77ce6d132bb353ed31f.tar.bz2
rockbox-a9b30ee002d828f3f5e8f77ce6d132bb353ed31f.tar.xz
Theme Editor: Made allll destructors virtual
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26895 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/gui/configdocument.h')
-rw-r--r--utils/themeeditor/gui/configdocument.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/themeeditor/gui/configdocument.h b/utils/themeeditor/gui/configdocument.h
index 746ed94..0057ac1 100644
--- a/utils/themeeditor/gui/configdocument.h
+++ b/utils/themeeditor/gui/configdocument.h
@@ -41,6 +41,7 @@ class NoScrollCombo: public QComboBox
{
public:
NoScrollCombo(QWidget* parent = 0) : QComboBox(parent) {}
+ virtual ~NoScrollCombo(){ }
void wheelEvent(QWheelEvent* event) { event->ignore(); }
};