projects
/
dana
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4758542
)
turn RectList into a vector
author
Dana Jansens
<danakj@orodu.net>
Mon, 22 Jul 2002 06:12:38 +0000
(06:12 +0000)
committer
Dana Jansens
<danakj@orodu.net>
Mon, 22 Jul 2002 06:12:38 +0000
(06:12 +0000)
src/Util.hh
patch
|
blob
|
history
diff --git
a/src/Util.hh
b/src/Util.hh
index 46d8f339daf1d5dde846a53aa7c0f2682efc7eff..40a2254abc72177f929e64e224930b0d3684f970 100644
(file)
--- 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;