| 730 | static gboolean in_hud = FALSE; |
| 731 | |
| 732 | static void |
| 733 | cancel_source_function (guint id) |
| 734 | { |
| 735 | if (id != 0) |
| 736 | { |
| 737 | GSource *source = g_main_context_find_source_by_id(g_main_context_default(), id); |
| 738 | if (source != NULL) |
| 739 | { |
| 740 | g_source_destroy(source); |
| 741 | } |
| 742 | } |
| 743 | } |
| 744 | |
| 745 | static void |
| 746 | enable_animations_changed (GtkSettings *settings, GParamSpec *pspec, gboolean *result) |
no outgoing calls
no test coverage detected