diff options
Diffstat (limited to 'plugins/common/test-input-helper.c')
-rw-r--r-- | plugins/common/test-input-helper.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/plugins/common/test-input-helper.c b/plugins/common/test-input-helper.c index e7ac4a06..94b3bea1 100644 --- a/plugins/common/test-input-helper.c +++ b/plugins/common/test-input-helper.c @@ -28,28 +28,6 @@ #include "gsd-input-helper.h" -static void -print_disabled_devices (void) -{ - GList *devices, *l; - GdkDeviceManager *manager; - - manager = gdk_display_get_device_manager (gdk_display_get_default ()); - - devices = get_disabled_devices (manager); - g_print ("Disabled devices:\t\t\t"); - if (devices == NULL) { - g_print ("no\n"); - return; - } - - for (l = devices; l != NULL; l = l->next) { - g_print ("%d ", GPOINTER_TO_INT (l->data)); - } - g_list_free (devices); - g_print ("\n"); -} - int main (int argc, char **argv) { gboolean supports_xinput; @@ -90,8 +68,6 @@ int main (int argc, char **argv) return 1; } - print_disabled_devices (); - for (i = 0; i < n_devices; i++) { XDevice *device; |