| 102 | } |
| 103 | |
| 104 | static gboolean gtk_entry_focused(GtkWidget *widget, GdkEvent *event, gpointer user_data) |
| 105 | { |
| 106 | PiuField* self = (PiuField*)user_data; |
| 107 | PiuApplication* application = (*self)->application; |
| 108 | PiuApplicationSetFocus(application, self); |
| 109 | return FALSE; |
| 110 | } |
| 111 | |
| 112 | void PiuFieldBind(void* it, PiuApplication* application, PiuView* view) |
| 113 | { |
nothing calls this directly
no test coverage detected