Changeset 5836 for code/branches/core5/src/libraries/core/Language.cc
- Timestamp:
- Sep 30, 2009, 12:00:16 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core5/src/libraries/core/Language.cc
r5738 r5836 39 39 #include "util/Debug.h" 40 40 #include "Core.h" 41 #include "PathConfig.h" 41 42 42 43 namespace orxonox … … 200 201 COUT(4) << "Read default language file." << std::endl; 201 202 202 boost::filesystem::path filepath( Core::getConfigPath() / getFilename(this->defaultLanguage_));203 boost::filesystem::path filepath(PathConfig::getConfigPath() / getFilename(this->defaultLanguage_)); 203 204 204 205 // This creates the file if it's not existing … … 249 250 COUT(4) << "Read translated language file (" << Core::getLanguage() << ")." << std::endl; 250 251 251 boost::filesystem::path filepath( Core::getConfigPath() / getFilename(Core::getLanguage()));252 boost::filesystem::path filepath(PathConfig::getConfigPath() / getFilename(Core::getLanguage())); 252 253 253 254 // Open the file … … 303 304 COUT(4) << "Language: Write default language file." << std::endl; 304 305 305 boost::filesystem::path filepath( Core::getConfigPath() / getFilename(this->defaultLanguage_));306 boost::filesystem::path filepath(PathConfig::getConfigPath() / getFilename(this->defaultLanguage_)); 306 307 307 308 // Open the file
Note: See TracChangeset
for help on using the changeset viewer.