update from libegg to get fix from Ralph Loader for <Super> <Hyper> <Meta>
2002-09-29 Havoc Pennington <hp@pobox.com> * eggaccelerators.c: update from libegg to get fix from Ralph Loader for <Super> <Hyper> <Meta> parsing, #93005
This commit is contained in:
parent
469f82d9d8
commit
486e9796a0
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2002-09-29 Havoc Pennington <hp@pobox.com>
|
||||||
|
|
||||||
|
* eggaccelerators.c: update from libegg to get fix from Ralph
|
||||||
|
Loader for <Super> <Hyper> <Meta> parsing, #93005
|
||||||
|
|
||||||
2002-08-21 Deepa Natarajan <deepa.natarajan@wipro.com>
|
2002-08-21 Deepa Natarajan <deepa.natarajan@wipro.com>
|
||||||
|
|
||||||
* gnome-keybinding-properties.c: Added [un]maximize metacity bindings.
|
* gnome-keybinding-properties.c: Added [un]maximize metacity bindings.
|
||||||
|
|
|
@ -148,7 +148,7 @@ is_meta (const gchar *string)
|
||||||
(string[2] == 'e' || string[2] == 'E') &&
|
(string[2] == 'e' || string[2] == 'E') &&
|
||||||
(string[3] == 't' || string[3] == 'T') &&
|
(string[3] == 't' || string[3] == 'T') &&
|
||||||
(string[4] == 'a' || string[4] == 'A') &&
|
(string[4] == 'a' || string[4] == 'A') &&
|
||||||
(string[8] == '>'));
|
(string[5] == '>'));
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline gboolean
|
static inline gboolean
|
||||||
|
@ -160,7 +160,7 @@ is_super (const gchar *string)
|
||||||
(string[3] == 'p' || string[3] == 'P') &&
|
(string[3] == 'p' || string[3] == 'P') &&
|
||||||
(string[4] == 'e' || string[4] == 'E') &&
|
(string[4] == 'e' || string[4] == 'E') &&
|
||||||
(string[5] == 'r' || string[5] == 'R') &&
|
(string[5] == 'r' || string[5] == 'R') &&
|
||||||
(string[8] == '>'));
|
(string[6] == '>'));
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline gboolean
|
static inline gboolean
|
||||||
|
@ -172,7 +172,7 @@ is_hyper (const gchar *string)
|
||||||
(string[3] == 'p' || string[3] == 'P') &&
|
(string[3] == 'p' || string[3] == 'P') &&
|
||||||
(string[4] == 'e' || string[4] == 'E') &&
|
(string[4] == 'e' || string[4] == 'E') &&
|
||||||
(string[5] == 'r' || string[5] == 'R') &&
|
(string[5] == 'r' || string[5] == 'R') &&
|
||||||
(string[8] == '>'));
|
(string[6] == '>'));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue