search for: 41267ec

Displaying 2 results from an estimated 2 matches for "41267ec".

Did you mean: 4.267e
2008 Jan 07
0
3 commits - libswfdec-gtk/swfdec_gtk_loader.c libswfdec/swfdec_as_array.c libswfdec/swfdec_asbroadcaster.c libswfdec/swfdec_as_function.c libswfdec/swfdec_as_types.c libswfdec/swfdec_xml.c
...length; i++) { swfdec_as_object_get_variable (array, - swfdec_as_double_to_string (cx, i), &argv_pass[i]); + swfdec_as_integer_to_string (cx, i), &argv_pass[i]); } } else { length = 0; diff --git a/libswfdec/swfdec_as_types.c b/libswfdec/swfdec_as_types.c index 41267ec..8e87a6b 100644 --- a/libswfdec/swfdec_as_types.c +++ b/libswfdec/swfdec_as_types.c @@ -214,7 +214,7 @@ swfdec_as_str_concat (SwfdecAsContext *cx, const char * s1, const char *s2) } /** - * swfdec_as_double_to_string: + * swfdec_as_integer_to_string: * @context: a #SwfdecAsContext * @i: an...
2008 Jan 01
0
4 commits - libswfdec/swfdec_as_internal.h libswfdec/swfdec_as_object.c libswfdec/swfdec_as_types.c libswfdec/swfdec_as_types.h libswfdec/swfdec_sprite_movie_as.c test/trace
...6a561d1e4cd8 Author: Benjamin Otte <otte at gnome.org> Date: Tue Jan 1 18:35:41 2008 +0100 add swfdec_double_to_integer() Might be useful to audit variable getters if they use this function. diff --git a/libswfdec/swfdec_as_types.c b/libswfdec/swfdec_as_types.c index d4bbfb9..41267ec 100644 --- a/libswfdec/swfdec_as_types.c +++ b/libswfdec/swfdec_as_types.c @@ -503,6 +503,29 @@ swfdec_as_value_to_number (SwfdecAsContext *context, const SwfdecAsValue *value) } /** + * swfdec_as_double_to_integer: + * @d: any double + * + * Converts the given double to an integer using the sa...