diff options
author | Dave Camp <campd@oit.edu> | 2000-01-26 09:01:04 +0800 |
---|---|---|
committer | Dave Camp <campd@src.gnome.org> | 2000-01-26 09:01:04 +0800 |
commit | fb01420e586ba1a60b0e60a73a21e59b299015ec (patch) | |
tree | edc3098bc04f6196f717841083bbb2674767f997 /macros | |
parent | f2122c69d6fd23776cf1574af7a6d42596db3bdf (diff) | |
download | gsoc2013-evolution-fb01420e586ba1a60b0e60a73a21e59b299015ec.tar gsoc2013-evolution-fb01420e586ba1a60b0e60a73a21e59b299015ec.tar.gz gsoc2013-evolution-fb01420e586ba1a60b0e60a73a21e59b299015ec.tar.bz2 gsoc2013-evolution-fb01420e586ba1a60b0e60a73a21e59b299015ec.tar.lz gsoc2013-evolution-fb01420e586ba1a60b0e60a73a21e59b299015ec.tar.xz gsoc2013-evolution-fb01420e586ba1a60b0e60a73a21e59b299015ec.tar.zst gsoc2013-evolution-fb01420e586ba1a60b0e60a73a21e59b299015ec.zip |
Check for bonobo_object_get_type() rather than gnome_object_get_type().
2000-01-26 Dave Camp <campd@oit.edu>
* gnome-bonobo-check.m4: Check for bonobo_object_get_type() rather
than gnome_object_get_type().
svn path=/trunk/; revision=1642
Diffstat (limited to 'macros')
-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; } |