From 628a229ec9776d67f7c2d2f763dc770ec8d92345 Mon Sep 17 00:00:00 2001 From: Hans Breuer Date: Fri, 21 Sep 2001 19:53:03 +0000 Subject: [PATCH] updated externals version 0.4 2001-09-21 Hans Breuer * atk/atk.def : updated externals * atk/makefile.msc : version 0.4 * atk/atktext.c (atk_text_get_character_extents) : real_height is a reference to int, so use &local_height --- ChangeLog | 8 ++++++++ atk/atk.def | 4 ++-- atk/atktext.c | 2 +- atk/makefile.msc | 7 ++++--- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 593b64a..fe34c92 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2001-09-21 Hans Breuer + + * atk/atk.def : updated externals + * atk/makefile.msc : version 0.4 + + * atk/atktext.c (atk_text_get_character_extents) : real_height + is a reference to int, so use &local_height + Wed Sep 19 10:46:44 2001 Tim Janik * Released 0.4. diff --git a/atk/atk.def b/atk/atk.def index f1a5b62..ca81723 100644 --- a/atk/atk.def +++ b/atk/atk.def @@ -9,9 +9,9 @@ EXPORTS atk_add_global_event_listener atk_component_add_focus_handler atk_component_contains - atk_component_get_accessible_at_point atk_component_get_type atk_component_grab_focus + atk_component_ref_accessible_at_point atk_component_remove_focus_handler atk_document_get_document atk_document_get_document_type @@ -38,8 +38,8 @@ EXPORTS atk_hypertext_get_n_links atk_hypertext_get_type atk_image_get_image_description + atk_image_get_image_position atk_image_get_image_size - atk_image_get_position atk_image_get_type atk_image_set_image_description atk_implementor_get_type diff --git a/atk/atktext.c b/atk/atktext.c index ebe83bb..f7cd043 100755 --- a/atk/atktext.c +++ b/atk/atktext.c @@ -360,7 +360,7 @@ atk_text_get_character_extents (AtkText *text, if (height) real_height = height; else - real_height = local_height; + real_height = &local_height; iface = ATK_TEXT_GET_IFACE (text); diff --git a/atk/makefile.msc b/atk/makefile.msc index 377a052..73f4767 100644 --- a/atk/makefile.msc +++ b/atk/makefile.msc @@ -4,18 +4,19 @@ TOP = ..\.. PRJ_TOP = .. PACKAGE = atk -PKG_VER = 0.2 !INCLUDE $(TOP)\build\win32\make.msc +PKG_VER = 0.4 + top_srcdir = $(PRJ_TOP) top_builddir = $(PRJ_TOP) includedir = $(PRJ_TOP) LT_RELEASE = $(PKG_VER) INCLUDES = \ - -I$(top_srcdir) $(GLIB_CFLAGS) + -I$(top_srcdir) $(GLIB_CFLAGS) $(PANGO_CFLAGS) -PKG_LINK = $(GLIB_LIBS) +PKG_LINK = $(GLIB_LIBS) $(PANGO_LIBS) MAINTAINERCLEANFILES = \ atkmarshal.c -- 2.7.4