diff options
author | Hans Breuer <hans@breuer.org> | 2001-09-21 19:53:03 +0000 |
---|---|---|
committer | Hans Breuer <hans@src.gnome.org> | 2001-09-21 19:53:03 +0000 |
commit | 628a229ec9776d67f7c2d2f763dc770ec8d92345 (patch) | |
tree | 4f43e954c6e3eaceb8877b8e80e465847c766894 /atk | |
parent | 9db3db5e07d630e43a541d336f2200813fef4eb2 (diff) | |
download | atk-628a229ec9776d67f7c2d2f763dc770ec8d92345.tar.gz |
updated externals version 0.4
2001-09-21 Hans Breuer <hans@breuer.org>
* 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
Diffstat (limited to 'atk')
-rw-r--r-- | atk/atk.def | 4 | ||||
-rwxr-xr-x | atk/atktext.c | 2 | ||||
-rw-r--r-- | atk/makefile.msc | 7 |
3 files changed, 7 insertions, 6 deletions
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 |