+2002-08-20 Bill Haneman <bill.haneman@sun.com>
+
+ * HACKING:
+ Clarified and reworded our commit policy.
+
+ * NEWS:
+ Started an API "todo" addition list for 2.2.
+
+ * libspi/text.c:
+ (impl_getSelection):
+ Free char pointer from atk_text_get_selection, which was being leaked.
+
2002-08-19 Bill Haneman <bill.haneman@sun.com>
* AUTHORS:
returns.
* Made Accessibility_StateSet inherit from BonoboUnknown as it should;
- this was the main existing breakage in StateSet.
+this was the main existing breakage in StateSet.
+
+
+=================
+
+
+TODO API Additions:
+
+getStateName () and STATE_EXTENDED to allow extension of State API (already
+in ATK).
+
+AccessibleAction_getType () and AccessibleAction_getTypeName ().
+
+need getBaseAttributes ()
+for AccessibleText (available in ATK I think).
+
+table: getVisibleRange
+
+state: HEADER, etc. for spreadsheet cells
g_return_if_fail (text != NULL);
- atk_text_get_selection (text, selectionNum,
- &intStartOffset, &intEndOffset);
+ /* atk_text_get_selection returns gchar* which we discard */
+ g_free (atk_text_get_selection (text, selectionNum,
+ &intStartOffset, &intEndOffset));
+
*startOffset = intStartOffset;
*endOffset = intEndOffset;
}