mirror of
https://github.com/nuintun/command-manager.git
synced 2025-06-07 11:34:05 +08:00
update files
This commit is contained in:
parent
5c679826df
commit
51e346f760
@ -743,15 +743,15 @@ TChar.prototype.toString = function (){
|
|||||||
return this.value;
|
return this.value;
|
||||||
};
|
};
|
||||||
|
|
||||||
// rows unique id
|
// unique row id
|
||||||
var _uniqueId = 0;
|
var _uniqueRowId = 0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Row
|
* Row
|
||||||
* @constructor
|
* @constructor
|
||||||
*/
|
*/
|
||||||
function Row(){
|
function Row(){
|
||||||
this.id = _uniqueId++ | 0;
|
this.id = _uniqueRowId++ | 0;
|
||||||
this.version = 0;
|
this.version = 0;
|
||||||
this.cells = [];
|
this.cells = [];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user