Changeset 536


Ignore:
Timestamp:
02/06/09 09:36:04 (3 years ago)
Author:
mooneer
Message:

System.date should be inheriting from object.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • interpreter/trunk/modules/System/date.c

    r506 r536  
    250250     * and System.object. 
    251251     */ 
    252     kite_object_t *newclass = kite_new_class(thread, NULL, "date"); 
     252    kite_object_t *inherits = 
     253            kite_dereference_and_load(thread, "System.object"); 
     254    kite_object_t *newclass = kite_new_class(thread, inherits, "date"); 
    253255    kite_set_docstring(newclass, "Object for manipulating date/time."); 
    254256 
Note: See TracChangeset for help on using the changeset viewer.