aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-07-15 21:19:42 +0000
committerGuy Harris <guy@alum.mit.edu>2012-07-15 21:19:42 +0000
commit6bf7a66b29a3a9d7c63f75f61d8e66965d948e41 (patch)
treedc92b11f5ed9fe3f2ef7dc172ce5971e4c3fbda6
parent951fd55af3433bafee8f2599fe617048f4d9f3f3 (diff)
Try gdouble here, to see if it removes "gdouble to gfloat" warnings with
MSVC. svn path=/trunk/; revision=43731
-rw-r--r--ui/gtk/bytes_view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/bytes_view.c b/ui/gtk/bytes_view.c
index 816fac6aa6..acb997b6d5 100644
--- a/ui/gtk/bytes_view.c
+++ b/ui/gtk/bytes_view.c
@@ -243,7 +243,7 @@ bytes_view_scroll(GtkWidget *widget, GdkEventScroll *event)
{
BytesView *bv = BYTES_VIEW(widget);
- gfloat new_value;
+ gdouble new_value;
if (event->direction == GDK_SCROLL_UP) { /* mouse wheel pageUp */
bytes_view_ensure_vadj(bv);