From 98d4ac78ff630062261157b7ac907161447bee03 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 22 Jul 2002 06:12:38 +0000 Subject: [PATCH] turn RectList into a vector --- src/Util.hh | 4 ++-- 1 file 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 #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; -- 2.45.2