summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBjörn Lindqvist <bjourne@gmail.com>2008-05-25 08:41:15 +0000
committerBjörn Lindqvist <bjornl@src.gnome.org>2008-05-25 08:41:15 +0000
commit6eb51d28e3373c4af4245a42bdeb5c62cd88f59d (patch)
treefabf7756d10136ba4ebe3a94f72d19af1497cfa4 /tests
parent53c45d129a84afd6361355b357137914a5d8ff2e (diff)
downloadgdk-pixbuf-6eb51d28e3373c4af4245a42bdeb5c62cd88f59d.tar.gz
tests/pixbuf-lowmem.c tests/pixbuf-random.c
2008-05-25 Björn Lindqvist <bjourne@gmail.com> * tests/pixbuf-lowmem.c * tests/pixbuf-random.c * tests/pixbuf-randomly-modified.c * tests/pixbuf-read.c * tests/pixbuf-threads.c * tests/testgtk.c * tests/testtreeview.c: Fix remaining compiler warnings in these files (#523751). svn path=/trunk/; revision=20144
Diffstat (limited to 'tests')
-rw-r--r--tests/pixbuf-lowmem.c4
-rw-r--r--tests/pixbuf-random.c2
-rw-r--r--tests/pixbuf-randomly-modified.c2
-rw-r--r--tests/pixbuf-read.c2
-rw-r--r--tests/pixbuf-threads.c2
-rw-r--r--tests/testgtk.c49
-rw-r--r--tests/testtreeview.c6
7 files changed, 24 insertions, 43 deletions
diff --git a/tests/pixbuf-lowmem.c b/tests/pixbuf-lowmem.c
index f7245ba88..305ce9aaf 100644
--- a/tests/pixbuf-lowmem.c
+++ b/tests/pixbuf-lowmem.c
@@ -133,7 +133,7 @@ static GMemVTable limited_table = {
};
static void
-mem_test (const guchar *bytes, gsize len)
+mem_test (const gchar *bytes, gsize len)
{
gboolean did_fail = FALSE;
GError *err = NULL;
@@ -143,7 +143,7 @@ mem_test (const guchar *bytes, gsize len)
do {
loader = gdk_pixbuf_loader_new ();
- gdk_pixbuf_loader_write (loader, bytes, len, &err);
+ gdk_pixbuf_loader_write (loader, (guchar *) bytes, len, &err);
if (err)
{
g_error_free (err);
diff --git a/tests/pixbuf-random.c b/tests/pixbuf-random.c
index df50ef3ca..f9ff9f5af 100644
--- a/tests/pixbuf-random.c
+++ b/tests/pixbuf-random.c
@@ -26,7 +26,7 @@
#include <string.h>
static void
-assault (const gchar *header, gsize header_size, int n_images)
+assault (const guchar *header, gsize header_size, int n_images)
{
FILE *f;
enum { N_CHARACTERS = 10000 };
diff --git a/tests/pixbuf-randomly-modified.c b/tests/pixbuf-randomly-modified.c
index 3a33e0a30..7a31f0a5f 100644
--- a/tests/pixbuf-randomly-modified.c
+++ b/tests/pixbuf-randomly-modified.c
@@ -34,7 +34,7 @@ disaster (const char *what)
}
static void
-randomly_modify (const guchar *image, guint size)
+randomly_modify (const gchar *image, guint size)
{
int i;
diff --git a/tests/pixbuf-read.c b/tests/pixbuf-read.c
index 44769632f..17ece3fa5 100644
--- a/tests/pixbuf-read.c
+++ b/tests/pixbuf-read.c
@@ -74,7 +74,7 @@ main (int argc, char **argv)
{
err = NULL;
- if (test_loader (contents, size, &err))
+ if (test_loader ((guchar *) contents, size, &err))
g_print ("success\n");
else
g_print ("error: %s\n", err->message);
diff --git a/tests/pixbuf-threads.c b/tests/pixbuf-threads.c
index 5a8ce5f62..b8aeddd9b 100644
--- a/tests/pixbuf-threads.c
+++ b/tests/pixbuf-threads.c
@@ -33,7 +33,7 @@ load_image (gpointer data,
gchar *filename = data;
FILE *file;
int nbytes;
- char buf[1024];
+ guchar buf[1024];
size_t bufsize = 1024;
GdkPixbufLoader *loader;
GError *error = NULL;
diff --git a/tests/testgtk.c b/tests/testgtk.c
index 7b89acff7..ae0700b00 100644
--- a/tests/testgtk.c
+++ b/tests/testgtk.c
@@ -6761,15 +6761,8 @@ insert_row_clist (GtkWidget *widget, gpointer data)
if (!style1)
{
- GdkColor col1 = { 0, };
- GdkColor col2 = { 0, };
-
- col1.red = 0;
- col1.green = 56000;
- col1.blue = 0;
- col2.red = 32000;
- col2.green = 0;
- col2.blue = 56000;
+ GdkColor col1 = { 0, 0, 56000, 0};
+ GdkColor col2 = { 0, 32000, 0, 56000};
style1 = gtk_style_copy (GTK_WIDGET (data)->style);
style1->base[GTK_STATE_NORMAL] = col1;
@@ -6887,8 +6880,8 @@ create_clist (GtkWidget *widget)
GtkWidget *label;
GtkStyle *style;
- GdkColor col1 = { 0, };
- GdkColor col2 = { 0, };
+ GdkColor red_col = { 0, 56000, 0, 0};
+ GdkColor light_green_col = { 0, 0, 56000, 32000};
if (!window)
{
@@ -7019,16 +7012,9 @@ create_clist (GtkWidget *widget)
sprintf (text[1], "Right");
sprintf (text[2], "Center");
- col1.red = 56000;
- col1.green = 0;
- col1.blue = 0;
- col2.red = 0;
- col2.green = 56000;
- col2.blue = 32000;
-
style = gtk_style_new ();
- style->fg[GTK_STATE_NORMAL] = col1;
- style->base[GTK_STATE_NORMAL] = col2;
+ style->fg[GTK_STATE_NORMAL] = red_col;
+ style->base[GTK_STATE_NORMAL] = light_green_col;
pango_font_description_set_size (style->font_desc, 14 * PANGO_SCALE);
pango_font_description_set_weight (style->font_desc, PANGO_WEIGHT_BOLD);
@@ -7204,8 +7190,8 @@ void change_style (GtkWidget *widget, GtkCTree *ctree)
static GtkStyle *style2 = NULL;
GtkCTreeNode *node;
- GdkColor col1 = { 0, };
- GdkColor col2 = { 0, };
+ GdkColor green_col = { 0, 0, 56000, 0};
+ GdkColor purple_col = { 0, 32000, 0, 56000};
if (GTK_CLIST (ctree)->focus_row >= 0)
node = GTK_CTREE_NODE
@@ -7218,21 +7204,14 @@ void change_style (GtkWidget *widget, GtkCTree *ctree)
if (!style1)
{
- col1.red = 0;
- col1.green = 56000;
- col1.blue = 0;
- col2.red = 32000;
- col2.green = 0;
- col2.blue = 56000;
-
style1 = gtk_style_new ();
- style1->base[GTK_STATE_NORMAL] = col1;
- style1->fg[GTK_STATE_SELECTED] = col2;
+ style1->base[GTK_STATE_NORMAL] = green_col;
+ style1->fg[GTK_STATE_SELECTED] = purple_col;
style2 = gtk_style_new ();
- style2->base[GTK_STATE_SELECTED] = col2;
- style2->fg[GTK_STATE_NORMAL] = col1;
- style2->base[GTK_STATE_NORMAL] = col2;
+ style2->base[GTK_STATE_SELECTED] = purple_col;
+ style2->fg[GTK_STATE_NORMAL] = green_col;
+ style2->base[GTK_STATE_NORMAL] = purple_col;
pango_font_description_free (style2->font_desc);
style2->font_desc = pango_font_description_from_string ("courier 30");
}
@@ -10448,7 +10427,7 @@ create_wmhints (GtkWidget *widget)
gtk_widget_realize (window);
circles = gdk_bitmap_create_from_data (window->window,
- circles_bits,
+ (gchar *) circles_bits,
circles_width,
circles_height);
gdk_window_set_icon (window->window, NULL,
diff --git a/tests/testtreeview.c b/tests/testtreeview.c
index 7744f1246..8ee688a93 100644
--- a/tests/testtreeview.c
+++ b/tests/testtreeview.c
@@ -1050,7 +1050,7 @@ gtk_real_model_types_get_value (GtkTreeModel *tree_model,
g_value_init (value, G_TYPE_STRING);
- str = g_strdup_printf ("%ld", type);
+ str = g_strdup_printf ("%ld", (long int) type);
g_value_set_string (value, str);
g_free (str);
}
@@ -1249,7 +1249,9 @@ gtk_real_model_types_iter_parent (GtkTreeModel *tree_model,
if (parent == G_TYPE_INVALID)
{
if (type > G_TYPE_FUNDAMENTAL_MAX)
- g_warning ("no parent for %ld %s\n", type, g_type_name (type));
+ g_warning ("no parent for %ld %s\n",
+ (long int) type,
+ g_type_name (type));
return FALSE;
}
else