|
From: Enlightenment C. <no...@cv...> - 2006-10-13 20:35:45
|
Enlightenment CVS committal
Author : devilhorns
Project : e17
Module : apps/e
Dir : e17/apps/e/src/bin
Modified Files:
e_color_dialog.c
Log Message:
Set an icon for the color dialog.
===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_color_dialog.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- e_color_dialog.c 6 Sep 2006 08:02:51 -0000 1.6
+++ e_color_dialog.c 13 Oct 2006 20:35:39 -0000 1.7
@@ -26,7 +26,7 @@
if(!dia) return NULL;
dia->dia = e_dialog_new(con, "E", "_test");
e_dialog_title_set(dia->dia, "Color Selector");
-
+
dia->color = calloc(1, sizeof(E_Color));
if (color)
@@ -55,6 +55,7 @@
e_color_dialog_show(E_Color_Dialog *dia)
{
e_dialog_show(dia->dia);
+ e_dialog_border_icon_set(dia->dia, "enlightenment/colors");
}
void
|