Changeset 1747 for code/trunk/src/core/Language.cc
- Timestamp:
- Sep 9, 2008, 4:25:52 AM (17 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/core3 (added) merged: 1573-1574,1583-1586,1591-1594,1596-1597,1603,1606-1607,1610-1611,1655,1658,1676-1679,1681-1685,1687,1716-1723,1725-1729,1736
- Property svn:mergeinfo changed
-
code/trunk/src/core/Language.cc
r1535 r1747 37 37 38 38 #include "Core.h" 39 40 #include "Debug.h" 39 #include "util/Debug.h" 41 40 42 41 namespace orxonox … … 98 97 // Read the default language file to create all known LanguageEntry objects 99 98 this->readDefaultLanguageFile(); 99 } 100 101 /** 102 @brief Destructor: Deletes all language entries. 103 */ 104 Language::~Language() 105 { 106 for (std::map<std::string, LanguageEntry*>::iterator it = this->languageEntries_.begin(); it != this->languageEntries_.end(); ++it) 107 delete (it->second); 100 108 } 101 109
Note: See TracChangeset
for help on using the changeset viewer.