Enlightenment CVS committal Author : shorne Project : e17 Module : libs/ecore
Dir : e17/libs/ecore/src/lib/ecore_x Modified Files: ecore_x.c ecore_x_events.c Log Message: Fix some typos found when working on XIM. Add filter for XIM context priming =================================================================== RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_x/ecore_x.c,v retrieving revision 1.129 retrieving revision 1.130 diff -u -3 -r1.129 -r1.130 --- ecore_x.c 6 Oct 2007 08:37:32 -0000 1.129 +++ ecore_x.c 16 Dec 2007 01:41:15 -0000 1.130 @@ -624,7 +624,7 @@ /** * Kill a specific client * - * You can kill a specific client woning window @p win + * You can kill a specific client owning window @p win * * @param win Window of the client to be killed */ @@ -654,6 +654,10 @@ XEvent ev; XNextEvent(d, &ev); + + /* Filter event for XIM */ + if (XFilterEvent(&ev, ev.xkey.window)) continue; + if ((ev.type >= 0) && (ev.type < _ecore_x_event_handlers_num)) { if (_ecore_x_event_handlers[ev.type]) =================================================================== RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_x/ecore_x_events.c,v retrieving revision 1.99 retrieving revision 1.100 diff -u -3 -r1.99 -r1.100 --- ecore_x_events.c 15 Nov 2007 04:48:36 -0000 1.99 +++ ecore_x_events.c 16 Dec 2007 01:41:15 -0000 1.100 @@ -1,7 +1,8 @@ /* * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 */ -#include "langinfo.h" +#include <langinfo.h> + #include "ecore_private.h" #include "Ecore.h" #include "ecore_x_private.h" ------------------------------------------------------------------------- SF.Net email is sponsored by: Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs