Skip to content
Snippets Groups Projects
Commit 9b3daecd authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #9145: use XkbKeycodeToKeysym instead of (deprecated) XKeycodeToKeysym

parent d0b34296
No related branches found
No related tags found
No related merge requests found
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
#include <glib/gi18n.h> #include <glib/gi18n.h>
#include <gdk/gdk.h> #include <gdk/gdk.h>
#include <X11/XKBlib.h>
#include "shortcuts-config.h" #include "shortcuts-config.h"
#include "shortcuts.h" #include "shortcuts.h"
#include "unused.h" #include "unused.h"
...@@ -130,7 +131,7 @@ create_shortcuts_settings() ...@@ -130,7 +131,7 @@ create_shortcuts_settings()
gtk_list_store_append(store, &iter); gtk_list_store_append(store, &iter);
gtk_list_store_set(store, &iter, ACTION, _(list[i].action), MASK, gtk_list_store_set(store, &iter, ACTION, _(list[i].action), MASK,
(gint) list[i].mask, VALUE, (gint) list[i].mask, VALUE,
XKeycodeToKeysym(GDK_DISPLAY_XDISPLAY(gdk_display_get_default()), list[i].key, 0), -1); XkbKeycodeToKeysym(GDK_DISPLAY_XDISPLAY(gdk_display_get_default()), list[i].key, 0, 0), -1);
} }
gtk_tree_view_set_model(GTK_TREE_VIEW(treeview), GTK_TREE_MODEL(store)); gtk_tree_view_set_model(GTK_TREE_VIEW(treeview), GTK_TREE_MODEL(store));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment