diff options
| author | Max Horn | 2009-01-23 03:30:40 +0000 | 
|---|---|---|
| committer | Max Horn | 2009-01-23 03:30:40 +0000 | 
| commit | e4b013f616818f6da4cf7a1896f31d1429ef8f04 (patch) | |
| tree | 81ea72ac2ccb737bd8e2934af9335c1f56f46c18 /backends/platform/sdl | |
| parent | 3e7155981e020bc19540abc8486b816cb57c8a41 (diff) | |
| download | scummvm-rg350-e4b013f616818f6da4cf7a1896f31d1429ef8f04.tar.gz scummvm-rg350-e4b013f616818f6da4cf7a1896f31d1429ef8f04.tar.bz2 scummvm-rg350-e4b013f616818f6da4cf7a1896f31d1429ef8f04.zip | |
Renamed OSystem::openConfigFileForReading & openConfigFileForWriting to createConfigReadStream & createConfigWriteStream, in order to make it clear that the *caller* is responsible for deleting the streams (i.e., 'owns' them)
svn-id: r36013
Diffstat (limited to 'backends/platform/sdl')
| -rw-r--r-- | backends/platform/sdl/sdl.cpp | 4 | ||||
| -rw-r--r-- | backends/platform/sdl/sdl.h | 4 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/backends/platform/sdl/sdl.cpp b/backends/platform/sdl/sdl.cpp index 94f358db08..c852ba206d 100644 --- a/backends/platform/sdl/sdl.cpp +++ b/backends/platform/sdl/sdl.cpp @@ -384,12 +384,12 @@ static Common::String getDefaultConfigFileName() {  	return configFile;  } -Common::SeekableReadStream *OSystem_SDL::openConfigFileForReading() { +Common::SeekableReadStream *OSystem_SDL::createConfigReadStream() {  	Common::FSNode file(getDefaultConfigFileName());  	return file.openForReading();  } -Common::WriteStream *OSystem_SDL::openConfigFileForWriting() { +Common::WriteStream *OSystem_SDL::createConfigWriteStream() {  	Common::FSNode file(getDefaultConfigFileName());  	return file.openForWriting();  } diff --git a/backends/platform/sdl/sdl.h b/backends/platform/sdl/sdl.h index b6383d65f8..80a08de821 100644 --- a/backends/platform/sdl/sdl.h +++ b/backends/platform/sdl/sdl.h @@ -205,8 +205,8 @@ public:  	virtual FilesystemFactory *getFilesystemFactory();  	virtual void addSysArchivesToSearchSet(Common::SearchSet &s, int priority = 0); -	virtual Common::SeekableReadStream *openConfigFileForReading(); -	virtual Common::WriteStream *openConfigFileForWriting(); +	virtual Common::SeekableReadStream *createConfigReadStream(); +	virtual Common::WriteStream *createConfigWriteStream();  protected:  	bool _inited; | 
