summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjoye <joye>2014-05-16 20:40:14 (GMT)
committerjoye <joye>2014-05-16 20:40:14 (GMT)
commitaca010bf8750877b17e89c58ac2c39c3b450dc37 (patch)
tree71488fd0ba972fcfc47056c33fde7b0ee0a68e20
parent2287836f23837f1bfc2437b9186dc83fa63fec94 (diff)
downloadblt-aca010bf8750877b17e89c58ac2c39c3b450dc37.zip
blt-aca010bf8750877b17e89c58ac2c39c3b450dc37.tar.gz
blt-aca010bf8750877b17e89c58ac2c39c3b450dc37.tar.bz2
*** empty log message ***
-rw-r--r--src/bltGrMisc.h20
1 files changed, 9 insertions, 11 deletions
diff --git a/src/bltGrMisc.h b/src/bltGrMisc.h
index d65768e..f78db62 100644
--- a/src/bltGrMisc.h
+++ b/src/bltGrMisc.h
@@ -72,19 +72,17 @@ using namespace std;
*
*/
-#define REDRAW_PENDING (1<<2) /* 0x0004 */
-#define MAP_ITEM (1<<4) /* 0x0010 */
-#define FOCUS (1<<7) /* 0x0080 */
+#define GRAPH_DELETED (1<<1)
+#define REDRAW_PENDING (1<<2)
+#define FOCUS (1<<3)
-#define MAP_ALL (1<<8) /* 0x0100 */
-#define LAYOUT_NEEDED (1<<9) /* 0x0200 */
-#define RESET_AXES (1<<10)/* 0x0400 */
-#define GET_AXIS_GEOMETRY (1<<11)/* 0x0800 */
-
-#define CACHE_DIRTY (1<<14)/* 0x4000 */
-
-#define GRAPH_DELETED (1<<15)/* 0x4000 */
+#define MAP_ITEM (1<<4)
+#define MAP_ALL (1<<5)
+#define LAYOUT_NEEDED (1<<6)
+#define RESET_AXES (1<<7)
+#define GET_AXIS_GEOMETRY (1<<8)
+#define CACHE_DIRTY (1<<9)
#define MAP_WORLD (MAP_ALL|RESET_AXES|GET_AXIS_GEOMETRY)
#define MARGIN_NONE -1