mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-12-13 12:44:48 +00:00
Changed: Minor changes
This commit is contained in:
parent
a780c147c9
commit
ac56530c2d
1 changed files with 6 additions and 8 deletions
|
@ -37,10 +37,8 @@ static Atom XA_WM_DELETE_WINDOW = 0;
|
||||||
|
|
||||||
namespace NLMISC {
|
namespace NLMISC {
|
||||||
|
|
||||||
CUnixEventEmitter::CUnixEventEmitter ():_dpy(NULL), _win(0), _driver(NULL)
|
CUnixEventEmitter::CUnixEventEmitter ():_dpy(NULL), _win(0), _im(NULL), _ic(NULL), _driver(NULL)
|
||||||
{
|
{
|
||||||
_im = 0;
|
|
||||||
_ic = 0;
|
|
||||||
_SelectionOwned = false;
|
_SelectionOwned = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -526,11 +524,11 @@ bool CUnixEventEmitter::processMessage (XEvent &event, CEventServer *server)
|
||||||
_PressedKeys[key] = true;
|
_PressedKeys[key] = true;
|
||||||
|
|
||||||
// don't send a control character when deleting
|
// don't send a control character when deleting
|
||||||
if (key == KeyDELETE)
|
if (key == KeyDELETE) c = 0;
|
||||||
c = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Text[c] = '\0';
|
Text[c] = '\0';
|
||||||
|
|
||||||
if (c > 0)
|
if (c > 0)
|
||||||
{
|
{
|
||||||
#ifdef X_HAVE_UTF8_STRING
|
#ifdef X_HAVE_UTF8_STRING
|
||||||
|
|
Loading…
Reference in a new issue