mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-13 02:39:37 +00:00
Changed: #878 Fix typos in comments/code
This commit is contained in:
parent
c9116fd7be
commit
23653abd05
2 changed files with 17 additions and 17 deletions
|
@ -2480,7 +2480,7 @@ void CDriverGL::setWindowSize(uint32 width, uint32 height)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
XSetWMNormalHints(_dpy, _win, StdHints);
|
XSetWMNormalHints(_dpy, _win, StdHints);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (width != _CurrentMode.Width || height != _CurrentMode.Height)
|
if (width != _CurrentMode.Width || height != _CurrentMode.Height)
|
||||||
|
|
|
@ -106,22 +106,22 @@ void CUnixEventEmitter::createIM()
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void CUnixEventEmitter::closeIM()
|
void CUnixEventEmitter::closeIM()
|
||||||
{
|
{
|
||||||
#ifdef X_HAVE_UTF8_STRING
|
#ifdef X_HAVE_UTF8_STRING
|
||||||
if (_ic)
|
if (_ic)
|
||||||
{
|
{
|
||||||
XDestroyIC(_ic);
|
XDestroyIC(_ic);
|
||||||
_ic = 0;
|
_ic = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_im)
|
if (_im)
|
||||||
{
|
{
|
||||||
XCloseIM(_im);
|
XCloseIM(_im);
|
||||||
_im = 0;
|
_im = 0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void CUnixEventEmitter::submitEvents(CEventServer & server, bool allWindows)
|
void CUnixEventEmitter::submitEvents(CEventServer & server, bool allWindows)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue