search for: text_new

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

Did you mean: test_new
2007 Oct 22
0
12 commits - libswfdec/swfdec_as_strings.c libswfdec/swfdec_html_parser.c libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c libswfdec/swfdec_text_field_movie.h test/trace
...p - text->input->str, end - text->input->str); p = end; if (*p != '\0') p++; @@ -1515,23 +1512,15 @@ swfdec_text_field_movie_replace_text (SwfdecTextFieldMovie *text, guint start_index, guint end_index, const char *str) { SwfdecFormatIndex *findex; - char *text_new; GSList *iter, *prev; gboolean first; g_return_if_fail (SWFDEC_IS_TEXT_FIELD_MOVIE (text)); - g_return_if_fail (end_index <= strlen (text->text_display)); + g_return_if_fail (end_index <= text->input->len); g_return_if_fail (start_index <= end_index); g_return_i...
2007 Oct 18
0
14 commits - libswfdec/swfdec_as_strings.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c libswfdec/swfdec_text_field_movie.h libswfdec/swfdec_text_format.c
...63ed..4272c7c 100644 --- a/libswfdec/swfdec_text_field_movie.c +++ b/libswfdec/swfdec_text_field_movie.c @@ -1475,8 +1475,10 @@ void swfdec_text_field_movie_replace_text (SwfdecTextFieldMovie *text, guint start_index, guint end_index, const char *str) { + SwfdecFormatIndex *findex; char *text_new; - GSList *iter; + GSList *iter, *prev; + gboolean first; g_return_if_fail (SWFDEC_IS_TEXT_FIELD_MOVIE (text)); g_return_if_fail (end_index <= strlen (text->text_display)); @@ -1492,12 +1494,40 @@ swfdec_text_field_movie_replace_text (SwfdecTextFieldMovie *text, text->tex...