Fix some typos found when working on XIM.

Add filter for XIM context priming


SVN revision: 33159
This commit is contained in:
Stafford Mitchell Horne 2007-12-16 01:41:15 +00:00
parent 0112fdc383
commit b1088e8a16
2 changed files with 7 additions and 2 deletions

View File

@ -624,7 +624,7 @@ ecore_x_killall(Ecore_X_Window root)
/**
* 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 @@ _ecore_x_fd_handler(void *data, Ecore_Fd_Handler *fd_handler __UNUSED__)
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])

View File

@ -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"