turn RectList into a vector

This commit is contained in:
Dana Jansens 2002-07-22 06:12:38 +00:00
parent 47585423c6
commit 98d4ac78ff

View file

@ -28,7 +28,7 @@
#include <X11/Xutil.h> #include <X11/Xutil.h>
#include <string> #include <string>
#include <list> #include <vector>
class Rect { class Rect {
public: public:
@ -79,7 +79,7 @@ private:
int _x1, _y1, _x2, _y2; int _x1, _y1, _x2, _y2;
}; };
typedef std::list<Rect> RectList; typedef std::vector<Rect> RectList;
struct Strut { struct Strut {
unsigned int top, bottom, left, right; unsigned int top, bottom, left, right;