Displaying 1 result from an estimated 1 matches for "swfdec_text_field_movie_mouse_move".
2008 May 20
0
[PATCH] Fix compilation on 64-bit platforms
...an 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 @@ static void
swfdec_text_field_movie_mouse_move (SwfdecActor *actor, double x, double y)
{
SwfdecTextFieldMovie *text = SWFDEC_TEXT_FIELD_MOVIE (actor);
- guint index_;
+ gsize index_;
gsize start, end;
if (!text->selectable)
@@ -604,7 +604,7 @@ swfdec_text_field_movie_mouse_move (SwfdecActor *actor, double x, double y)
swfde...