Don't use eel_gdk_color_parse anymore. We don't have any colors left not

2008-10-09  Alexander Larsson  <alexl@redhat.com>

        * src/nautilus-property-browser.c:
        (nautilus_property_browser_drag_data_get):
	Don't use eel_gdk_color_parse anymore. We don't have any colors
	left not supported by gdk_color_parse.
	


svn path=/trunk/; revision=14709
This commit is contained in:
Alexander Larsson 2008-10-09 09:28:02 +00:00 committed by Alexander Larsson
parent 1d5491042f
commit 2f340fc517
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2008-10-09 Alexander Larsson <alexl@redhat.com>
* src/nautilus-property-browser.c:
(nautilus_property_browser_drag_data_get):
Don't use eel_gdk_color_parse anymore. We don't have any colors
left not supported by gdk_color_parse.
2008-10-08 Christian Persch <chpe@gnome.org>
* libnautilus-private/nautilus-mime-application-chooser.c:

View file

@ -610,7 +610,7 @@ nautilus_property_browser_drag_data_get (GtkWidget *widget,
/* handle the "reset" case as an image */
if (eel_strcmp (property_browser->details->dragged_file, RESET_IMAGE_NAME) != 0) {
eel_gdk_color_parse (property_browser->details->dragged_file, &color);
gdk_color_parse (property_browser->details->dragged_file, &color);
colorArray[0] = color.red;
colorArray[1] = color.green;