diff options
-rw-r--r-- | macros/ChangeLog | 5 | ||||
-rw-r--r-- | macros/gnome-bonobo-check.m4 | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog index ec32da4975..b62a2f911d 100644 --- a/macros/ChangeLog +++ b/macros/ChangeLog @@ -1,3 +1,8 @@ +2000-01-26 Dave Camp <campd@oit.edu> + + * gnome-bonobo-check.m4: Check for bonobo_object_get_type() rather + than gnome_object_get_type(). + 2000-01-23 Peter Teichman <peter@helixcode.com> * gnome-pilot.m4: i broke the version-checking macro for other diff --git a/macros/gnome-bonobo-check.m4 b/macros/gnome-bonobo-check.m4 index 65e272cf7a..730012f094 100644 --- a/macros/gnome-bonobo-check.m4 +++ b/macros/gnome-bonobo-check.m4 @@ -88,7 +88,7 @@ int main () char *tmp_version; system ("touch conf.bonobotest"); - gnome_object_get_type (); + bonobo_object_get_type (); return 0; } |