summaryrefslogtreecommitdiff
path: root/gtk/gtklinkbutton.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2006-04-03 15:06:41 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2006-04-03 15:06:41 +0000
commit0351d5671ddf406de9cceb746e95a48a61be45be (patch)
tree0ffbc17ead54325af91c353cae67534aff5e25b4 /gtk/gtklinkbutton.c
parent645ccd04fcb2284069d57544f6e36270b6c88d59 (diff)
downloadgtk+-0351d5671ddf406de9cceb746e95a48a61be45be.tar.gz
Make the default colors const.
2006-04-03 Matthias Clasen <mclasen@redhat.com> * gtk/gtklinkbutton.c: Make the default colors const.
Diffstat (limited to 'gtk/gtklinkbutton.c')
-rw-r--r--gtk/gtklinkbutton.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtklinkbutton.c b/gtk/gtklinkbutton.c
index 81b8b657d6..7d872a4821 100644
--- a/gtk/gtklinkbutton.c
+++ b/gtk/gtklinkbutton.c
@@ -99,8 +99,8 @@ static const GtkTargetEntry link_drop_types[] = {
{ "_NETSCAPE_URL", 0, 0 }
};
-static GdkColor default_link_color = { 0, 0, 0, 0xeeee };
-static GdkColor default_visited_link_color = { 0, 0x5555, 0x1a1a, 0x8b8b };
+static const GdkColor default_link_color = { 0, 0, 0, 0xeeee };
+static const GdkColor default_visited_link_color = { 0, 0x5555, 0x1a1a, 0x8b8b };
static GtkLinkButtonUriFunc uri_func = NULL;
static gpointer uri_func_data = NULL;