GOB: Replaced many uses of strdupcpy by Common::String

svn-id: r41077
This commit is contained in:
Max Horn 2009-05-31 16:59:45 +00:00
parent 010fbadf01
commit 400d2b10af
21 changed files with 67 additions and 86 deletions

View file

@ -48,7 +48,7 @@ public:
*
* @param targetName The game's target name. Used as a base for the save names.
*/
SaveLoad(GobEngine *vm, const char *targetName);
SaveLoad(GobEngine *vm);
virtual ~SaveLoad();
/** "foo\bar\quux.bla" => "quux.bla". */
@ -67,8 +67,6 @@ public:
protected:
GobEngine *_vm;
char *_targetName;
virtual SaveHandler *getHandler(const char *fileName) const;
virtual const char *getDescription(const char *fileName) const;
};