Add missing virtual destructors

This commit is contained in:
David Capello 2014-08-17 20:42:55 -03:00
parent 7080d0fa83
commit 5abcf7a296
2 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,7 @@ namespace app {
class ISliderBgPainter {
public:
virtual ~ISliderBgPainter() { }
virtual void paint(ui::Slider* slider, ui::Graphics* graphics, const gfx::Rect& rc) = 0;
};

View File

@ -53,6 +53,7 @@ namespace base { // Based on C++0x threads lib
class func_wrapper {
public:
virtual ~func_wrapper() { }
virtual void operator()() = 0;
};