diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-07-22 06:12:38 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-07-22 06:12:38 +0000 |
| commit | 98d4ac78ff630062261157b7ac907161447bee03 (patch) | |
| tree | bfa04f5223bd35960facaef6c8401eac60fe649b | |
| parent | 47585423c6494391db0425f2237890e82f1b031a (diff) | |
turn RectList into a vector
| -rw-r--r-- | src/Util.hh | 4 |
1 files changed, 2 insertions, 2 deletions
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 <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; |
