mirror of
https://github.com/danbulant/node-x11
synced 2026-06-20 07:01:23 +00:00
Fix name of KillClient request
- s/KillKlient/KillClient - Keep KillClient for backwards compatibility.
This commit is contained in:
parent
421261aaac
commit
18404d0de1
1 changed files with 3 additions and 1 deletions
|
|
@ -907,12 +907,14 @@ module.exports = {
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
KillKlient: [
|
KillClient: [
|
||||||
function(resource) {
|
function(resource) {
|
||||||
return [ 'CxSL', [113, 2, resource] ];
|
return [ 'CxSL', [113, 2, resource] ];
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
|
KillKlient: KillClient,
|
||||||
|
|
||||||
SetScreenSaver: [
|
SetScreenSaver: [
|
||||||
function(timeout, interval, preferBlanking, allowExposures) {
|
function(timeout, interval, preferBlanking, allowExposures) {
|
||||||
return [ 'CxSssCCxx', [107, 3, timeout, interval, preferBlanking, allowExposures]];
|
return [ 'CxSssCCxx', [107, 3, timeout, interval, preferBlanking, allowExposures]];
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue