summaryrefslogtreecommitdiff
path: root/testsuite/gtk/notify.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gtk/notify.c')
-rw-r--r--testsuite/gtk/notify.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/testsuite/gtk/notify.c b/testsuite/gtk/notify.c
index ddd806948d..ed2076455f 100644
--- a/testsuite/gtk/notify.c
+++ b/testsuite/gtk/notify.c
@@ -41,7 +41,7 @@ assert_notifies (GObject *object,
typedef struct
{
const gchar *name;
- gint count;
+ int count;
} NotifyData;
static void
@@ -64,12 +64,12 @@ check_property (GObject *instance, GParamSpec *pspec)
if (G_TYPE_IS_ENUM (pspec->value_type))
{
GEnumClass *class;
- gint i;
+ int i;
NotifyData data;
gulong id;
- gint first;
- gint value;
- gint current_count;
+ int first;
+ int value;
+ int current_count;
class = g_type_class_ref (pspec->value_type);
@@ -103,11 +103,11 @@ check_property (GObject *instance, GParamSpec *pspec)
else if (G_TYPE_IS_FLAGS (pspec->value_type))
{
GFlagsClass *class;
- gint i;
+ int i;
NotifyData data;
gulong id;
guint value;
- gint current_count;
+ int current_count;
class = g_type_class_ref (pspec->value_type);
@@ -165,11 +165,11 @@ check_property (GObject *instance, GParamSpec *pspec)
else if (pspec->value_type == G_TYPE_INT)
{
GParamSpecInt *p = G_PARAM_SPEC_INT (pspec);
- gint i;
+ int i;
NotifyData data;
gulong id;
- gint value;
- gint current_count;
+ int value;
+ int current_count;
data.name = pspec->name;
data.count = 0;
@@ -202,7 +202,7 @@ check_property (GObject *instance, GParamSpec *pspec)
NotifyData data;
gulong id;
guint value;
- gint current_count;
+ int current_count;
guint minimum, maximum;
if (G_IS_PARAM_SPEC_UINT (pspec))
@@ -274,7 +274,7 @@ check_property (GObject *instance, GParamSpec *pspec)
gulong id;
gdouble value;
gdouble new_value;
- gint current_count;
+ int current_count;
gdouble delta;
data.name = pspec->name;
@@ -315,7 +315,7 @@ check_property (GObject *instance, GParamSpec *pspec)
gulong id;
gfloat value;
gfloat new_value;
- gint current_count;
+ int current_count;
data.name = pspec->name;
data.count = 0;
@@ -678,7 +678,7 @@ main (int argc, char **argv)
{
const GType *otypes;
guint i;
- gint result;
+ int result;
gtk_test_init (&argc, &argv);
gtk_test_register_all_types();