Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 23, 2015, 10:44:57 PM (9 years ago)
Author:
landauf
Message:

Loader is now a singleton instead of a static class. fixes issue with statically initialized ClassTreeMask (which again requires a BaseObject-Identifier)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core7/src/orxonox/Level.cc

    r9667 r10392  
    6363
    6464            if (this->xmlfile_)
    65                 Loader::unload(this->xmlfile_);
     65                Loader::getInstance().unload(this->xmlfile_);
    6666        }
    6767    }
     
    9595        this->xmlfile_ = new XMLFile(mask, this->xmlfilename_);
    9696
    97         Loader::open(this->xmlfile_);
     97        Loader::getInstance().open(this->xmlfile_);
    9898    }
    9999
Note: See TracChangeset for help on using the changeset viewer.