aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/drawable.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/menu/drawable.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/menu/drawable.hpp b/src/menu/drawable.hpp
index 84f9daa0..e2cc43fc 100644
--- a/src/menu/drawable.hpp
+++ b/src/menu/drawable.hpp
@@ -41,16 +41,16 @@ namespace usdx
/**
* Pure virtual method, that descendant classes have to implement.
*/
- virtual void on_draw(void) const = 0;
+ virtual void draw(void) const = 0;
public:
Drawable(void);
virtual ~Drawable(void) {};
/**
- * Method for redraw this Object. If visible issues on_draw.
+ * Method for redraw this Object. If visible issues draw.
*/
- void draw(void) const;
+ void repaint(void) const;
/**
* Setter for visible.