Displaying 1 result from an estimated 1 matches for "swfdectextattributes".
2008 May 20
0
[PATCH] Fix compilation on 64-bit platforms
.....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 *text = SWFDEC_TEXT_FIELD_MOVIE (actor);
double x, y;
- guint index_;
+ gsize index_;
gboolean hit;
if (!text->selectable)
@@ -590,7 +590,7...