diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2012-03-25 21:27:54 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2013-01-13 22:40:51 +0100 |
commit | 26a298e59af130dbee55cb87b181128bfdaebd00 (patch) | |
tree | 9a4f05ec1d295493cc3c74900439cccef62a813b /src | |
parent | a2f113f8ee6f196aa7712a87704b854ac5e2e41d (diff) | |
download | usdx-26a298e59af130dbee55cb87b181128bfdaebd00.tar.gz usdx-26a298e59af130dbee55cb87b181128bfdaebd00.tar.xz usdx-26a298e59af130dbee55cb87b181128bfdaebd00.zip |
menu/text: reordered includes in header file
Diffstat (limited to 'src')
-rw-r--r-- | src/menu/text.hpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/menu/text.hpp b/src/menu/text.hpp index 9cbef60b..9c910b98 100644 --- a/src/menu/text.hpp +++ b/src/menu/text.hpp @@ -28,13 +28,14 @@ #define TEXT_HPP #include <string> -#include "drawable_control.hpp" -#include "container.hpp" -#include "utils/rectangle.hpp" #include <ftgl.h> #include <boost/thread/mutex.hpp> #include <log4cpp/Category.hh> +#include "drawable_control.hpp" +#include "container.hpp" +#include "utils/point.hpp" + namespace usdx { class Text : public DrawableControl |