mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-27 03:16:58 +00:00
Add missing virtual destructors
This commit is contained in:
parent
7080d0fa83
commit
5abcf7a296
@ -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;
|
||||
};
|
||||
|
||||
|
@ -53,6 +53,7 @@ namespace base { // Based on C++0x threads lib
|
||||
|
||||
class func_wrapper {
|
||||
public:
|
||||
virtual ~func_wrapper() { }
|
||||
virtual void operator()() = 0;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user