diff options
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/slider.cpp | 3 | ||||
-rw-r--r-- | src/gui/widgets/tablemodel.h | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/widgets/slider.cpp b/src/gui/widgets/slider.cpp index 693ac0f7..e78055dd 100644 --- a/src/gui/widgets/slider.cpp +++ b/src/gui/widgets/slider.cpp @@ -209,4 +209,5 @@ void Slider::mouseEntered(gcn::MouseEvent& event) void Slider::mouseExited(gcn::MouseEvent& event) { mHasMouse = false; -}
\ No newline at end of file +} + diff --git a/src/gui/widgets/tablemodel.h b/src/gui/widgets/tablemodel.h index 129d2089..c2943cf2 100644 --- a/src/gui/widgets/tablemodel.h +++ b/src/gui/widgets/tablemodel.h @@ -40,6 +40,8 @@ public: * \param completed whether we are signalling the end of the update */ virtual void modelUpdated(bool completed) = 0; + + virtual ~TableModelListener() {} }; /** |