textbox: rename data type

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2008-06-14 09:18:51 +02:00
parent ce08d9769f
commit 89e03dd326
1 changed files with 5 additions and 5 deletions

View File

@ -31,7 +31,7 @@ typedef struct
{ {
char *text; char *text;
int width; int width;
} Data; } textbox_data_t;
static int static int
textbox_draw(draw_context_t *ctx, int screen __attribute__ ((unused)), textbox_draw(draw_context_t *ctx, int screen __attribute__ ((unused)),
@ -39,7 +39,7 @@ textbox_draw(draw_context_t *ctx, int screen __attribute__ ((unused)),
int offset, int used, int offset, int used,
void *p __attribute__ ((unused))) void *p __attribute__ ((unused)))
{ {
Data *d = w->widget->data; textbox_data_t *d = w->widget->data;
if(d->width) if(d->width)
w->area.width = d->width; w->area.width = d->width;
@ -68,7 +68,7 @@ textbox_draw(draw_context_t *ctx, int screen __attribute__ ((unused)),
static widget_tell_status_t static widget_tell_status_t
textbox_tell(widget_t *widget, const char *property, const char *new_value) textbox_tell(widget_t *widget, const char *property, const char *new_value)
{ {
Data *d = widget->data; textbox_data_t *d = widget->data;
if(!a_strcmp(property, "text")) if(!a_strcmp(property, "text"))
{ {
@ -87,14 +87,14 @@ widget_t *
textbox_new(alignment_t align) textbox_new(alignment_t align)
{ {
widget_t *w; widget_t *w;
Data *d; textbox_data_t *d;
w = p_new(widget_t, 1); w = p_new(widget_t, 1);
widget_common_new(w); widget_common_new(w);
w->align = align; w->align = align;
w->draw = textbox_draw; w->draw = textbox_draw;
w->tell = textbox_tell; w->tell = textbox_tell;
w->data = d = p_new(Data, 1); w->data = d = p_new(textbox_data_t, 1);
return w; return w;
} }