aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/drawable_control.hpp
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2010-04-29 10:50:59 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-05 17:17:48 +0100
commitf613ca3eed2fca5eb17e574c0b5324b4e47dbd7f (patch)
tree07d33dc0558096bfc5839157d5162cb1c880a45d /src/menu/drawable_control.hpp
parent743d715722d03e8a3b3f438cb0e296f9100372f7 (diff)
downloadusdx-f613ca3eed2fca5eb17e574c0b5324b4e47dbd7f.tar.gz
usdx-f613ca3eed2fca5eb17e574c0b5324b4e47dbd7f.tar.xz
usdx-f613ca3eed2fca5eb17e574c0b5324b4e47dbd7f.zip
removed unnecessary pure virtual method declaration
removed that pure virtual declaration - it is already there from the base class
Diffstat (limited to 'src/menu/drawable_control.hpp')
-rw-r--r--src/menu/drawable_control.hpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/menu/drawable_control.hpp b/src/menu/drawable_control.hpp
index bf7ff42b..d8b10d10 100644
--- a/src/menu/drawable_control.hpp
+++ b/src/menu/drawable_control.hpp
@@ -36,13 +36,6 @@ namespace usdx
{
class DrawableControl : public Drawable, public Control
{
- protected:
- /**
- * Pure virtual method, that descendant classes have to
- * implement. (Should be left pure virtual.)
- */
- virtual void draw(SDL_Surface* display) const = 0;
-
public:
DrawableControl(Control* parent);
virtual ~DrawableControl();