diff options
author | Monsta <[email protected]> | 2015-12-13 21:23:30 +0300 |
---|---|---|
committer | Monsta <[email protected]> | 2015-12-13 21:23:30 +0300 |
commit | 5014a4ddbdf8349fe8206cf3df3ac6a97361b469 (patch) | |
tree | 153b36e9894d38734a5019ab0e95b638ef7f467e /mate-session/gs-idle-monitor.c | |
parent | b67a44ec476c704616c7e3b89a2c5f5d36483b49 (diff) | |
download | mate-session-manager-5014a4ddbdf8349fe8206cf3df3ac6a97361b469.tar.bz2 mate-session-manager-5014a4ddbdf8349fe8206cf3df3ac6a97361b469.tar.xz |
fix a typo in a warning
Diffstat (limited to 'mate-session/gs-idle-monitor.c')
-rw-r--r-- | mate-session/gs-idle-monitor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mate-session/gs-idle-monitor.c b/mate-session/gs-idle-monitor.c index 773ddea..8416de2 100644 --- a/mate-session/gs-idle-monitor.c +++ b/mate-session/gs-idle-monitor.c @@ -294,13 +294,13 @@ _init_xtest (GSIdleMonitor *monitor) if (monitor->priv->have_xtest) { monitor->priv->keycode1 = XKeysymToKeycode (GDK_DISPLAY_XDISPLAY(gdk_display_get_default()), XK_Alt_L); if (monitor->priv->keycode1 == 0) { - g_warning ("keycode1 not existant"); + g_warning ("keycode1 not existent"); } monitor->priv->keycode2 = XKeysymToKeycode (GDK_DISPLAY_XDISPLAY(gdk_display_get_default()), XK_Alt_R); if (monitor->priv->keycode2 == 0) { monitor->priv->keycode2 = XKeysymToKeycode (GDK_DISPLAY_XDISPLAY(gdk_display_get_default()), XK_Alt_L); if (monitor->priv->keycode2 == 0) { - g_warning ("keycode2 not existant"); + g_warning ("keycode2 not existent"); } } monitor->priv->keycode = &monitor->priv->keycode1; |