diff options
| author | Dusan Durech <dusan@debian.debian> | 2009-04-12 14:29:51 +0200 |
|---|---|---|
| committer | Dusan Durech <dusan@debian.debian> | 2009-04-12 14:29:51 +0200 |
| commit | 876fc624df9728ee0feee26e1b31b53ed9ef3326 (patch) | |
| tree | e20814ab6d07fb892284dcee11bc492532bdabaa /src/widget/widget_image.h | |
| parent | dff1cbc31ca8d585c01f5bebd08e50cf07fd2b0c (diff) | |
convert all name function from oldName to new_name
Diffstat (limited to 'src/widget/widget_image.h')
| -rw-r--r-- | src/widget/widget_image.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/widget/widget_image.h b/src/widget/widget_image.h index 081fbda..2af63e6 100644 --- a/src/widget/widget_image.h +++ b/src/widget/widget_image.h @@ -11,9 +11,9 @@ typedef struct widget_image { image_t *image; } widget_image_t; -extern widget_t *newWidgetImage(int x, int y, image_t * image); -extern void drawWidgetImage(widget_t * p); -extern void eventWidgetImage(widget_t * p); -extern void destroyWidgetImage(widget_t * p); +extern widget_t *wid_image_new(int x, int y, image_t * image); +extern void wid_image_draw(widget_t * p); +extern void wid_image_event(widget_t * p); +extern void wid_image_destroy(widget_t * p); #endif |