WaE: class has virtual functions, but destructor is not virtual
This commit is contained in:
parent
69746a5e96
commit
00677707d3
1 changed files with 3 additions and 0 deletions
|
@ -70,6 +70,7 @@ public:
|
|||
BackgroundTheme(
|
||||
const ::boost::shared_ptr<Theme>& rpTheme,
|
||||
const ::std::vector<SharedButton>& rButtons);
|
||||
virtual ~BackgroundTheme() { }
|
||||
/** Set the preview bounding box, the maximal area in which to display
|
||||
buttons. A call to this method triggers a call to Layout().
|
||||
*/
|
||||
|
@ -106,6 +107,7 @@ namespace {
|
|||
RectangleBackgroundTheme(
|
||||
const ::boost::shared_ptr<Theme>& rpTheme,
|
||||
const ::std::vector<SharedButton>& rButtons);
|
||||
virtual ~RectangleBackgroundTheme() { }
|
||||
virtual BitmapEx CreateBackground (
|
||||
const OutputDevice& rTemplateDevice,
|
||||
const bool bIsButtonDown) const;
|
||||
|
@ -127,6 +129,7 @@ namespace {
|
|||
BitmapBackgroundTheme(
|
||||
const ::boost::shared_ptr<Theme>& rpTheme,
|
||||
const ::std::vector<SharedButton>& rButtons);
|
||||
virtual ~BitmapBackgroundTheme() { }
|
||||
virtual BitmapEx CreateBackground (
|
||||
const OutputDevice& rTemplateDevice,
|
||||
const bool bIsButtonDown) const;
|
||||
|
|
Loading…
Reference in a new issue