From 02c31eae05e3c760fadc5cc7e7ddf94ff33582f8 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Fri, 25 Apr 2008 17:55:36 +0200 Subject: [PATCH] [textbox] Remove bg property in widget_tell Signed-off-by: Julien Danjou --- widgets/textbox.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/widgets/textbox.c b/widgets/textbox.c index 5c195c2f4..6a14432d6 100644 --- a/widgets/textbox.c +++ b/widgets/textbox.c @@ -80,11 +80,6 @@ textbox_tell(widget_t *widget, char *property, char *new_value) return WIDGET_NOERROR; else return WIDGET_ERROR_FORMAT_COLOR; - else if(!a_strcmp(property, "bg")) - if(draw_color_new(globalconf.connection, widget->statusbar->screen, new_value, &d->style.bg)) - return WIDGET_NOERROR; - else - return WIDGET_ERROR_FORMAT_COLOR; else if(!a_strcmp(property, "font")) { if((newfont = draw_font_new(globalconf.connection, globalconf.default_screen, new_value)))