search for: finddata

Displaying 3 results from an estimated 3 matches for "finddata".

Did you mean: winddata
2007 Aug 21
0
Branch 'vivi' - 15 commits - configure.ac libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_debugger.h libswfdec/swfdec_as_object.c libswfdec/swfdec_movie.c libswfdec/swfdec_script.c libswfdec/swfdec_types.h vivified/core vivified/ui
...++ b/vivified/ui/vivi_vivi_docklet.c @@ -114,7 +114,37 @@ vivi_vivi_docklet_class_init (ViviViviDo } static void -vivi_vivi_docklet_init (ViviViviDocklet *vivi_docklet) +vivi_vivi_docklet_init (ViviViviDocklet *docklet) { } +typedef struct { + GtkWidget * result; + GType desired_type; +} FindData; + +static void +find_widget (GtkWidget *widget, gpointer datap) +{ + FindData *data = datap; + + if (G_TYPE_CHECK_INSTANCE_TYPE (widget, data->desired_type)) { + data->result = widget; + return; + } + if (GTK_IS_CONTAINER (widget)) + gtk_container_foreach (GTK_CONTAINER (widget)...
2009 Jun 05
0
Wine release 1.1.23
...ectI ---------------------------------------------------------------- Changes since 1.1.22: Alexandre Julliard (71): msvcrt: Add explicit 32- and 64-bit versions of the time functions. msvcrt: Add explicit 32- and 64-bit versions of the utime functions. msvcrt: Fix the stat and finddata structures for 64-bit. msvcrt/tests: Make all msvcrt function pointers cdecl. include/msvcrt: Add explicit msvcrt_long types to replace long for 64-bit compatibility. msvcrt: Replace long by MSVCRT_long. wineboot: Compain loudly if we can't find wine.inf. oleaut32/...
2007 Aug 22
0
163 commits - autogen.sh configure.ac doc/swfdec-sections.txt libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_player.h libswfdec-gtk/swfdec_gtk_widget.c libswfdec-gtk/swfdec_source.c libswfdec/Makefile.am libswfdec/swfdec_as_array.c
...++ b/vivified/ui/vivi_vivi_docklet.c @@ -114,7 +114,37 @@ vivi_vivi_docklet_class_init (ViviViviDo } static void -vivi_vivi_docklet_init (ViviViviDocklet *vivi_docklet) +vivi_vivi_docklet_init (ViviViviDocklet *docklet) { } +typedef struct { + GtkWidget * result; + GType desired_type; +} FindData; + +static void +find_widget (GtkWidget *widget, gpointer datap) +{ + FindData *data = datap; + + if (G_TYPE_CHECK_INSTANCE_TYPE (widget, data->desired_type)) { + data->result = widget; + return; + } + if (GTK_IS_CONTAINER (widget)) + gtk_container_foreach (GTK_CONTAINER (widget)...