Changeset 15

Show
Ignore:
Timestamp:
10/26/05 16:45:10 (3 years ago)
Author:
Jan-Klaas Kollhof
Message:

fixed bug in hash calculation for objects

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • jsolait/trunk/jsolait/jsolait.js

    r14 r15  
    127127            NewClass.prototype.__hash__=function(){ 
    128128                if(this.__id__==null){ 
    129                     this.__id__ = '#auto#' +  Class.hashCount++ 
     129                    this.__id__ = '#auto#' +  (Class.hashCount++); 
    130130                } 
    131131                return this.__id__;