Changeset 2687 for code/branches/buildsystem3/src/core
- Timestamp:
- Feb 21, 2009, 12:20:23 AM (16 years ago)
- Location:
- code/branches/buildsystem3/src/core
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem3/src/core/CommandLine.cc
r2685 r2687 308 308 // They will not overwrite the arguments given directly 309 309 std::ifstream file; 310 file.open(filepath. native_file_string().c_str());310 file.open(filepath.file_string().c_str()); 311 311 args.clear(); 312 312 if (file) -
code/branches/buildsystem3/src/core/ConfigFileManager.cc
r2685 r2687 230 230 // This creates the config file if it's not existing 231 231 std::ofstream createFile; 232 createFile.open(filepath. native_file_string().c_str(), std::fstream::app);232 createFile.open(filepath.file_string().c_str(), std::fstream::app); 233 233 createFile.close(); 234 234 235 235 // Open the file 236 236 std::ifstream file; 237 file.open(filepath. native_file_string().c_str(), std::fstream::in);237 file.open(filepath.file_string().c_str(), std::fstream::in); 238 238 239 239 if (!file.is_open()) … … 345 345 346 346 std::ofstream file; 347 file.open(filepath. native_file_string().c_str(), std::fstream::out);347 file.open(filepath.file_string().c_str(), std::fstream::out); 348 348 file.setf(std::ios::fixed, std::ios::floatfield); 349 349 file.precision(6); -
code/branches/buildsystem3/src/core/Language.cc
r2685 r2687 211 211 // This creates the file if it's not existing 212 212 std::ofstream createFile; 213 createFile.open(filepath. native_file_string().c_str(), std::fstream::app);213 createFile.open(filepath.file_string().c_str(), std::fstream::app); 214 214 createFile.close(); 215 215 216 216 // Open the file 217 217 std::ifstream file; 218 file.open(filepath. native_file_string().c_str(), std::fstream::in);218 file.open(filepath.file_string().c_str(), std::fstream::in); 219 219 220 220 if (!file.is_open()) … … 263 263 // Open the file 264 264 std::ifstream file; 265 file.open(filepath. native_file_string().c_str(), std::fstream::in);265 file.open(filepath.file_string().c_str(), std::fstream::in); 266 266 267 267 if (!file.is_open()) … … 320 320 // Open the file 321 321 std::ofstream file; 322 file.open(filepath. native_file_string().c_str(), std::fstream::out);322 file.open(filepath.file_string().c_str(), std::fstream::out); 323 323 324 324 if (!file.is_open()) -
code/branches/buildsystem3/src/core/LuaBind.cc
r2685 r2687 90 90 output_ = ""; 91 91 std::ifstream file; 92 file.open(filepath. native_file_string().c_str(), std::fstream::in);92 file.open(filepath.file_string().c_str(), std::fstream::in); 93 93 94 94 if (!file.is_open()) -
code/branches/buildsystem3/src/core/input/KeyBinder.cc
r2685 r2687 260 260 // get bindings from default file if filename doesn't exist. 261 261 std::ifstream infile; 262 infile.open(filepath. native_file_string().c_str());262 infile.open(filepath.file_string().c_str()); 263 263 if (!infile) 264 264 {
Note: See TracChangeset
for help on using the changeset viewer.