From: Dana Jansens Date: Mon, 22 Jul 2002 06:12:38 +0000 (+0000) Subject: turn RectList into a vector X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=98d4ac78ff630062261157b7ac907161447bee03;p=chaz%2Fopenbox turn RectList into a vector --- diff --git a/src/Util.hh b/src/Util.hh index 46d8f339..40a2254a 100644 --- a/src/Util.hh +++ b/src/Util.hh @@ -28,7 +28,7 @@ #include #include -#include +#include class Rect { public: @@ -79,7 +79,7 @@ private: int _x1, _y1, _x2, _y2; }; -typedef std::list RectList; +typedef std::vector RectList; struct Strut { unsigned int top, bottom, left, right;