summaryrefslogtreecommitdiff
path: root/src/guichan/include/guichan/basiccontainer.hpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-08-02 19:42:05 +0300
committerAndrei Karas <akaras@inbox.ru>2011-08-02 20:05:36 +0300
commitc92bfce739f2ff463365aaa47a50ebbb1bfef7e9 (patch)
tree13fc9ff1418b31022f173d714dcf153fee8891e8 /src/guichan/include/guichan/basiccontainer.hpp
parentccbe435e2a97ffe3d371e992462ccf5af591d4cd (diff)
downloadplus-c92bfce739f2ff463365aaa47a50ebbb1bfef7e9.tar.gz
plus-c92bfce739f2ff463365aaa47a50ebbb1bfef7e9.tar.bz2
plus-c92bfce739f2ff463365aaa47a50ebbb1bfef7e9.tar.xz
plus-c92bfce739f2ff463365aaa47a50ebbb1bfef7e9.zip
A bit improve speed in guichan containers.
Diffstat (limited to 'src/guichan/include/guichan/basiccontainer.hpp')
-rw-r--r--src/guichan/include/guichan/basiccontainer.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/guichan/include/guichan/basiccontainer.hpp b/src/guichan/include/guichan/basiccontainer.hpp
index 269a5ba44..b63b83cd8 100644
--- a/src/guichan/include/guichan/basiccontainer.hpp
+++ b/src/guichan/include/guichan/basiccontainer.hpp
@@ -45,6 +45,7 @@
#define GCN_BASICCONTAINER_HPP
#include <list>
+#include <vector>
#include "guichan/deathlistener.hpp"
#include "guichan/platform.hpp"
@@ -159,7 +160,7 @@ namespace gcn
/**
* Typedef.
*/
- typedef std::list<Widget *> WidgetList;
+ typedef std::vector<Widget *> WidgetList;
/**
* Typedef.