summaryrefslogtreecommitdiff
path: root/tests/testassistant.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testassistant.c')
-rw-r--r--tests/testassistant.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/testassistant.c b/tests/testassistant.c
index 22ee8209c2..00b1674d52 100644
--- a/tests/testassistant.c
+++ b/tests/testassistant.c
@@ -108,7 +108,7 @@ static gboolean
progress_timeout (GtkWidget *assistant)
{
GtkWidget *progress;
- gint current_page;
+ int current_page;
gdouble value;
current_page = gtk_assistant_get_current_page (GTK_ASSISTANT (assistant));
@@ -323,8 +323,8 @@ select_branch (GtkWidget *widget, gchar branch)
selected_branch = branch;
}
-static gint
-nonlinear_assistant_forward_page (gint current_page, gpointer data)
+static int
+nonlinear_assistant_forward_page (int current_page, gpointer data)
{
switch (current_page)
{
@@ -408,8 +408,8 @@ create_nonlinear_assistant (GtkWidget *widget)
}
}
-static gint
-looping_assistant_forward_page (gint current_page, gpointer data)
+static int
+looping_assistant_forward_page (int current_page, gpointer data)
{
switch (current_page)
{
@@ -680,7 +680,7 @@ int
main (int argc, gchar *argv[])
{
GtkWidget *window, *box, *button;
- gint i;
+ int i;
gboolean done = FALSE;
gtk_init ();