summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/desktop.c20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/gui/desktop.c b/src/gui/desktop.c
index 39235d2..1a0a5a8 100644
--- a/src/gui/desktop.c
+++ b/src/gui/desktop.c
@@ -5,15 +5,17 @@
static desktop_vtable_t desktop_vtable = {
{
- desktop_draw,
- composite_widget_get_focus,
- widget_model_to_screen,
- widget_contains_coordinate,
- desktop_on_mouse_down,
- desktop_on_mouse_up,
- desktop_on_mouse_move,
- composite_widget_on_key_down,
- composite_widget_on_key_up
+ {
+ desktop_draw,
+ composite_widget_get_focus,
+ widget_model_to_screen,
+ widget_contains_coordinate,
+ desktop_on_mouse_down,
+ desktop_on_mouse_up,
+ desktop_on_mouse_move,
+ composite_widget_on_key_down,
+ composite_widget_on_key_up
+ }
}
};