Displaying 1 result from an estimated 1 matches for "swfdecactor".
Did you mean:
swfdec_actor
2008 May 20
0
[PATCH] Fix compilation on 64-bit platforms
...-
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/swfdec/swfdec_text_field_movie.c b/swfdec/swfdec_text_field_movie.c
index 1f7bc4b..729c2e2 100644
--- a/swfdec/swfdec_text_field_movie.c
+++ b/swfdec/swfdec_text_field_movie.c
@@ -524,7 +524,7 @@ swfdec_text_field_movie_mouse_cursor (SwfdecActor *actor)
{
SwfdecTextFieldMovie *text = SWFDEC_TEXT_FIELD_MOVIE (actor);
double x, y;
- guint index_;
+ gsize index_;
const SwfdecTextAttributes *attr;
gboolean hit;
@@ -559,7 +559,7 @@ swfdec_text_field_movie_mouse_press (SwfdecActor *actor, guint button)
{
SwfdecTextFieldMovie...