summaryrefslogtreecommitdiff
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
parentccbe435e2a97ffe3d371e992462ccf5af591d4cd (diff)
downloadplus-c92bfce739f2ff463365aaa47a50ebbb1bfef7e9.tar.gz
plus-c92bfce739f2ff463365aaa47a50ebbb1bfef7e9.tar.bz2
plus-c92bfce739f2ff463365aaa47a50ebbb1bfef7e9.tar.xz
plus-c92bfce739f2ff463365aaa47a50ebbb1bfef7e9.zip
A bit improve speed in guichan containers.
-rw-r--r--src/guichan/basiccontainer.cpp3
-rw-r--r--src/guichan/include/guichan/basiccontainer.hpp3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/guichan/basiccontainer.cpp b/src/guichan/basiccontainer.cpp
index aa804f88b..d51968eb6 100644
--- a/src/guichan/basiccontainer.cpp
+++ b/src/guichan/basiccontainer.cpp
@@ -88,7 +88,8 @@ namespace gcn
throw GCN_EXCEPTION("There is no such widget in this container.");
mWidgets.erase(iter);
- mWidgets.push_front(widget);
+ mWidgets.insert(mWidgets.begin(), widget);
+// mWidgets.push_front(widget);
}
void BasicContainer::death(const Event& event)
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.