Updated AtkXYCoords enum.
authorBrian Cameron <bcameron@src.gnome.org>
Wed, 27 Jun 2001 16:30:33 +0000 (16:30 +0000)
committerBrian Cameron <bcameron@src.gnome.org>
Wed, 27 Jun 2001 16:30:33 +0000 (16:30 +0000)
ChangeLog
atk/atktext.h

index a6ad021..c2563b2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,8 @@
 2001-06-27  Brian Cameron <brian.cameron@sun.com>
+       *atk/atktext.h
+       Updated AtkXYCoords enum.
+
+2001-06-27  Brian Cameron <brian.cameron@sun.com>
        *atk/atkaction.c atk/atkaction.h atk/atkcomponent.c
        atk/atkcomponent.h atk/atkhyperlink.c atk/atkhypertext.c
        atk/atkimage.c atk/atkimage.h atk/atkobject.c
index b01ec1e..04c5dca 100755 (executable)
@@ -51,14 +51,14 @@ typedef struct _AtkTextIface AtkTextIface;
 /**
  *AtkXYCoords:
  *@ATK_XY_SCREEN: specifies xy coordinates relative to the screen
- *@ATK_XY_WIDGET: specifies xy coordinates relative to the widgets window
+ *@ATK_XY_WINDOW: specifies xy coordinates relative to the widgets 
+ * top-level window
  *
- *Specifies what type of coordinates are to be returned for functions that
- *return position coordinates
+ *Specifies how xy coordinates are to be interpreted
  **/
 typedef enum {
   ATK_XY_SCREEN,
-  ATK_XY_WIDGET
+  ATK_XY_WINDOW
 }AtkXYCoords;
 
 /**