summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2007-02-24 23:56:39 +0000
committerTor Lillqvist <tml@src.gnome.org>2007-02-24 23:56:39 +0000
commit9cc082f678e018ac829c3a44114dacd584086f01 (patch)
treed3de160cc0abddfea5a5351709ca9e74cb6644a6
parent0b0abfcdd11110f4cc92c280610ca5f1899d1b6a (diff)
downloadatk-9cc082f678e018ac829c3a44114dacd584086f01.tar.gz
Fix typo: declare atk_misc_get_type(), not atk_util_get_type().
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. svn path=/trunk/; revision=1153
-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,