aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/container.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/menu/container.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/menu/container.hpp b/src/menu/container.hpp
index 271a4f67..8ba9466c 100644
--- a/src/menu/container.hpp
+++ b/src/menu/container.hpp
@@ -27,9 +27,11 @@
#ifndef CONTAINER_HPP
#define CONTAINER_HPP
-#include "drawable_control.hpp"
+#include <SDL/SDL.h>
#include <list>
+#include "drawable_control.hpp"
+
namespace usdx
{
class Container : public DrawableControl
@@ -44,7 +46,7 @@ namespace usdx
/**
* Method for redraw all contained objects.
*/
- void repaint(void) const;
+ void repaint(SDL_Surface* display) const;
};
};