all repos — openbox @ 98d4ac78ff630062261157b7ac907161447bee03

openbox fork - make it a bit more like ryudo

turn RectList into a vector
Dana Jansens danakj@orodu.net
commit

98d4ac78ff630062261157b7ac907161447bee03

parent

47585423c6494391db0425f2237890e82f1b031a

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M src/Util.hhsrc/Util.hh

@@ -28,7 +28,7 @@ #include <X11/Xlib.h>

#include <X11/Xutil.h> #include <string> -#include <list> +#include <vector> class Rect { public:

@@ -79,7 +79,7 @@ private:

int _x1, _y1, _x2, _y2; }; -typedef std::list<Rect> RectList; +typedef std::vector<Rect> RectList; struct Strut { unsigned int top, bottom, left, right;