search for: e09a7f1

Displaying 2 results from an estimated 2 matches for "e09a7f1".

2007 Oct 27
1
libswfdec/swfdec_text_field_movie.c
...8efc89a604236e7fe03ece Author: Pekka Lampila <pekka.lampila at iki.fi> Date: Sat Oct 27 17:14:06 2007 +0300 Init TextField's native properties when TextField is created from a tag diff --git a/libswfdec/swfdec_text_field_movie.c b/libswfdec/swfdec_text_field_movie.c index 979652e..e09a7f1 100644 --- a/libswfdec/swfdec_text_field_movie.c +++ b/libswfdec/swfdec_text_field_movie.c @@ -918,6 +918,8 @@ swfdec_text_field_movie_init_movie (SwfdecMovie *movie) cx = SWFDEC_AS_OBJECT (movie)->context; + swfdec_text_field_movie_init_properties (cx); + swfdec_as_object_get_variabl...
2007 Oct 28
0
2 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_text_field_movie.c libswfdec/swfdec_text_format.c
...2:08 2007 +0200 Don't crash in TextField code when TextFormat's creation fails (Fixes: 12974) Also create an object in swfdec_text_format_new even if _global.TextFormat is missing diff --git a/libswfdec/swfdec_text_field_movie.c b/libswfdec/swfdec_text_field_movie.c index e09a7f1..e9c3fed 100644 --- a/libswfdec/swfdec_text_field_movie.c +++ b/libswfdec/swfdec_text_field_movie.c @@ -934,6 +934,9 @@ swfdec_text_field_movie_init_movie (SwfdecMovie *movie) // format text->format_new = SWFDEC_TEXT_FORMAT (swfdec_text_format_new_no_properties (cx)); + if (!text-&gt...