Commit e1519dfed453130da3376f13162e9da3508f8515

brushlib: virtual destructor

Should not affect anything at the moment, just good C++ style.
  
1313// surface interface required by brush.hpp
1414class Surface {
1515public:
16
17 virtual ~Surface() {}
18
1619 virtual bool draw_dab (float x, float y,
1720 float radius,
1821 float color_r, float color_g, float color_b,