summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--atk/atk.def4
-rwxr-xr-xatk/atkmisc.h2
3 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 38796a0..7ccbea7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2007-02-25 Tor Lillqvist <tml@novell.com>
+
+ * atk/atkmisc.h: Fix typo: declare atk_misc_get_type(), not
+ atk_util_get_type().
+
+ * atk/atk.def: Add atkmisc entry points.
+
2007-02-20 Kjartan Maraas <kmaraas@gnome.org>
* Makefile.am: Dist MAINTAINERS.
diff --git a/atk/atk.def b/atk/atk.def
index efde90c..092c3e8 100644
--- a/atk/atk.def
+++ b/atk/atk.def
@@ -76,6 +76,10 @@ EXPORTS
atk_implementor_ref_accessible
atk_key_event_type_get_type
atk_layer_get_type
+ atk_misc_get_instance
+ atk_misc_get_type
+ atk_misc_threads_enter
+ atk_misc_threads_leave
atk_no_op_object_factory_get_type
atk_no_op_object_factory_new
atk_no_op_object_get_type
diff --git a/atk/atkmisc.h b/atk/atkmisc.h
index 82f51a7..d750e2d 100755
--- a/atk/atkmisc.h
+++ b/atk/atkmisc.h
@@ -59,7 +59,7 @@ struct _AtkMiscClass
void (* threads_leave) (AtkMisc *misc);
gpointer vfuncs[32]; /* future bincompat */
};
-GType atk_util_get_type (void);
+GType atk_misc_get_type (void);
/*
* Wrapper for thread lock, i.e. take the thread mutex for the GUI toolkit,