summaryrefslogtreecommitdiff
path: root/src/widget/widget_catchkey.c
diff options
context:
space:
mode:
authorDusan Durech <dusan@debian.debian>2009-04-12 23:00:24 +0200
committerDusan Durech <dusan@debian.debian>2009-04-12 23:00:24 +0200
commit0287f62578cb4aa643649a9d62dc753586b16b30 (patch)
tree7f6e2721d71ab2824b7d163a5b878d390ddb7918 /src/widget/widget_catchkey.c
parent5876841408bf307d78d254b5ca355c61044e9e72 (diff)
fix bad preFixs
Diffstat (limited to 'src/widget/widget_catchkey.c')
-rw-r--r--src/widget/widget_catchkey.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/widget/widget_catchkey.c b/src/widget/widget_catchkey.c
index 6e1268c..b9d1b2d 100644
--- a/src/widget/widget_catchkey.c
+++ b/src/widget/widget_catchkey.c
@@ -9,7 +9,7 @@
#include "widget.h"
#include "widget_catchkey.h"
-widget_t *catchKey_new(int key, int x, int y, void *event)
+widget_t *catch_key_new(int key, int x, int y, void *event)
{
widget_catchkey_t *new;
@@ -21,7 +21,7 @@ widget_t *catchKey_new(int key, int x, int y, void *event)
return widget_new(WIDGET_TYPE_CATCHKEY, x, y, WIDGET_CATCHKEY_WIDTH, WIDGET_CATCHKEY_HEIGHT, new);
}
-int catchKey_get(widget_t * widget)
+int catch_key_get(widget_t * widget)
{
widget_catchkey_t *p;
@@ -33,7 +33,7 @@ int catchKey_get(widget_t * widget)
return p->key;
}
-void catchKey_set(widget_t * widget, int key)
+void catch_key_set(widget_t * widget, int key)
{
widget_catchkey_t *p;
@@ -45,7 +45,7 @@ void catchKey_set(widget_t * widget, int key)
p->key = key;
}
-void catchKey_draw(widget_t * widget)
+void catch_key_draw(widget_t * widget)
{
widget_catchkey_t *p;
char *name;
@@ -93,7 +93,7 @@ static int getPessAnyKey()
return WIDGET_CATCHKEY_NOKEY;
}
-void catchKey_event(widget_t * widget)
+void catch_key_event(widget_t * widget)
{
widget_catchkey_t *p;
int x, y;
@@ -126,7 +126,7 @@ void catchKey_event(widget_t * widget)
}
}
-void catchKey_destroy(widget_t * widget)
+void catch_key_destroy(widget_t * widget)
{
widget_catchkey_t *p;