mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
2936c8e942
Thu Nov 22 15:01:03 2001 Owen Taylor <otaylor@redhat.com> * Version 1.3.11 * configure.in (ATK_REQUIRED_VERSION): Require GLib-1.3.11, Pango-0.22, ATK-0.7. * tests/prop-editor.c (property_widget): Restore to working as well as it did before. * gtk/gtklistitem.h: Mark deprecated since it is an integral part of GtkList. * demos/gtk-demo/demo-common.h: New header file, for a common functions not important to the meat of the demos. * demos/gtk-demo/main.c (demo_ifind_file): Add a utility function to search for a file used by the demo. * demos/*.c: Use demo_find_file.
12 lines
185 B
C
12 lines
185 B
C
#ifndef __DEMO_COMMON_H__
|
|
#define __DEMO_COMMON_H__
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
gchar *demo_find_file (const gchar *base,
|
|
GError **err);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __DEMO_COMMON_H__ */
|