Displaying 2 results from an estimated 2 matches for "657b519".
Did you mean:
650519
2007 Dec 05
0
4 commits - libswfdec/swfdec_as_object.c libswfdec/swfdec_movie.c libswfdec/swfdec_policy_loader.c libswfdec/swfdec_text_field_movie.c libswfdec/swfdec_text_format.c
...**varlist, *p, *unescaped;
guint i;
+ g_return_if_fail (SWFDEC_IS_AS_OBJECT (object));
+ g_return_if_fail (str != NULL);
+
varlist = g_strsplit (str, "&", -1);
for (i = 0; varlist[i] != NULL; i++) {
diff --git a/libswfdec/swfdec_movie.c b/libswfdec/swfdec_movie.c
index 657b519..567da71 100644
--- a/libswfdec/swfdec_movie.c
+++ b/libswfdec/swfdec_movie.c
@@ -1612,9 +1612,11 @@ static void
swfdec_movie_load_variables_on_finish (SwfdecAsObject *target,
const char *text)
{
- swfdec_as_object_decode (target, text);
+ if (text != NULL)
+ swfdec_as_object_decode (ta...
2007 Nov 28
0
59 commits - libswfdec-gtk/swfdec_gtk_widget.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_button.c libswfdec/swfdec_button.h libswfdec/swfdec_button_movie.c libswfdec/swfdec_button_movie.h libswfdec/swfdec_event.c
...+ return 0;
+}
commit 930931b307fc143faa5b98e04cc7b68a9a3bba9d
Author: Benjamin Otte <otte at gnome.org>
Date: Wed Nov 28 16:16:03 2007 +0100
in Flash 5, the this object for button events was a MovieClip
diff --git a/libswfdec/swfdec_movie.c b/libswfdec/swfdec_movie.c
index 33717b0..657b519 100644
--- a/libswfdec/swfdec_movie.c
+++ b/libswfdec/swfdec_movie.c
@@ -424,6 +424,10 @@ swfdec_movie_execute (SwfdecMovie *movie, SwfdecEventType condition)
if (condition == SWFDEC_EVENT_CONSTRUCT || condition < SWFDEC_EVENT_PRESS)
return;
thisp = SWFDEC_AS_OBJECT (movie->p...