1
0
Fork 0

no longer let top==left and bottom==right. This is necessary for label-box

pointers, and may introduce bugs elsewhere. Not that I've notice any yet.
This commit is contained in:
mfranz 2006-07-24 17:35:34 +00:00
parent 7a52695de0
commit 04818a4bc7

View file

@ -216,18 +216,18 @@ public:
Units getUnits() const { return _units; }
enum {
HORZ = 0x0000, // keep that at zero?
AUTOTICKS = 0x0001,
VERT = 0x0002,
HORZ = 0x0000,
TOP = 0x0004,
BOTTOM = 0x0008,
LEFT = TOP,
RIGHT = BOTTOM,
LEFT = 0x0010,
RIGHT = 0x0020,
BOTH = (LEFT|RIGHT),
NOTICKS = 0x0010,
ARITHTIC = 0x0020,
DECITICS = 0x0040,
NOTEXT = 0x0080,
NOTICKS = 0x0040,
ARITHTIC = 0x0080,
DECITICS = 0x0100,
NOTEXT = 0x0200,
};
enum Adjust {