[gtk+] Use double iso. float since that is what GtkAdjustment uses
- From: Kristian Rietveld <kristian src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] Use double iso. float since that is what GtkAdjustment uses
- Date: Tue, 12 Oct 2010 17:16:37 +0000 (UTC)
commit b58e3bb30c16d63bdf60f439a8c601f26072e451
Author: Kristian Rietveld <kris gtk org>
Date: Tue Oct 12 17:25:21 2010 +0200
Use double iso. float since that is what GtkAdjustment uses
gtk/tests/treeview-scrolling.c | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
---
diff --git a/gtk/tests/treeview-scrolling.c b/gtk/tests/treeview-scrolling.c
index 6b2d13c..ef7f12c 100644
--- a/gtk/tests/treeview-scrolling.c
+++ b/gtk/tests/treeview-scrolling.c
@@ -273,7 +273,7 @@ test_position_with_align (GtkTreeView *tree_view,
gint row_y,
gint row_start,
gint row_height,
- gfloat row_align)
+ gdouble row_align)
{
gboolean passed = TRUE;
GtkAdjustment *vadj = gtk_tree_view_get_vadjustment (tree_view);
@@ -392,8 +392,8 @@ static void
test_position (GtkTreeView *tree_view,
GtkTreePath *path,
gboolean use_align,
- gfloat row_align,
- gfloat col_align)
+ gdouble row_align,
+ gdouble col_align)
{
gint pos;
gchar *path_str;
@@ -453,7 +453,7 @@ static void
scroll (ScrollFixture *fixture,
GtkTreePath *path,
gboolean use_align,
- gfloat row_align)
+ gdouble row_align)
{
gtk_tree_view_set_cursor (GTK_TREE_VIEW (fixture->tree_view), path,
NULL, FALSE);
@@ -519,7 +519,7 @@ static void
scroll_after_realize (ScrollFixture *fixture,
GtkTreePath *path,
gboolean use_align,
- gfloat row_align)
+ gdouble row_align)
{
gtk_widget_show_all (fixture->window);
@@ -588,7 +588,7 @@ static void
scroll_both_realize (ScrollFixture *fixture,
GtkTreePath *path,
gboolean use_align,
- gfloat row_align)
+ gdouble row_align)
{
GtkTreePath *end;
@@ -973,7 +973,7 @@ test_type_string (int test_type)
static char *
align_string (gboolean use_align,
- gfloat row_align)
+ gdouble row_align)
{
char *ret;
@@ -989,7 +989,7 @@ add_test (const char *path,
gboolean mixed,
int test_type,
gboolean use_align,
- gfloat row_align,
+ gdouble row_align,
void (* setup) (ScrollFixture *, gconstpointer),
void (* scroll_func) (ScrollFixture *, gconstpointer))
{
@@ -1014,7 +1014,7 @@ static void
add_tests (gboolean mixed,
int test_type,
gboolean use_align,
- gfloat row_align,
+ gdouble row_align,
void (*scroll_func) (ScrollFixture *, gconstpointer))
{
void (* setup) (ScrollFixture *, gconstpointer);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]