aboutsummaryrefslogtreecommitdiffstats
path: root/filter/filter-colour.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2002-11-06 10:40:23 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-11-06 10:40:23 +0800
commit5fbe18400561be7fdd697a94175e406567a9ef38 (patch)
treef9e4a101ffba496bc68c42a876d11828ca620ba2 /filter/filter-colour.c
parentf36f2d1fcf5851aa1d00ab8096ca0b362880475b (diff)
downloadgsoc2013-evolution-5fbe18400561be7fdd697a94175e406567a9ef38.tar
gsoc2013-evolution-5fbe18400561be7fdd697a94175e406567a9ef38.tar.gz
gsoc2013-evolution-5fbe18400561be7fdd697a94175e406567a9ef38.tar.bz2
gsoc2013-evolution-5fbe18400561be7fdd697a94175e406567a9ef38.tar.lz
gsoc2013-evolution-5fbe18400561be7fdd697a94175e406567a9ef38.tar.xz
gsoc2013-evolution-5fbe18400561be7fdd697a94175e406567a9ef38.tar.zst
gsoc2013-evolution-5fbe18400561be7fdd697a94175e406567a9ef38.zip
some build fixes
svn path=/trunk/; revision=18575
Diffstat (limited to 'filter/filter-colour.c')
-rw-r--r--filter/filter-colour.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/filter/filter-colour.c b/filter/filter-colour.c
index 09cc04115d..c2de04f8a4 100644
--- a/filter/filter-colour.c
+++ b/filter/filter-colour.c
@@ -201,13 +201,13 @@ set_colour (GnomeColorPicker *cp, guint r, guint g, guint b, guint a, FilterColo
static GtkWidget *
get_widget (FilterElement *fe)
{
- FilterColour *fc = (FilterColour *)fe;
+ FilterColour *fc = (FilterColour *) fe;
GnomeColorPicker *cp;
- cp = (GnomeColorPicker *)gnome_color_picker_new();
- gnome_color_picker_set_i16(cp, fc->r, fc->g, fc->b, fc->a);
- gtk_widget_show((GtkWidget *)cp);
- g_signal_connect (cp, "color_set", set_colour, fe);
+ cp = (GnomeColorPicker *) gnome_color_picker_new ();
+ gnome_color_picker_set_i16 (cp, fc->r, fc->g, fc->b, fc->a);
+ gtk_widget_show ((GtkWidget *) cp);
+ g_signal_connect (cp, "color_set", GTK_SIGNAL_FUNC (set_colour), fe);
return (GtkWidget *) cp;
}