From 2568bad3cc1ae70350f5ad31e97b4c13194e437e Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Wed, 1 Feb 2012 13:43:47 +0000 Subject: sprintf() begone! Replaced with StringUtils' Printf() git-svn-id: http://mc-server.googlecode.com/svn/trunk@216 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cFile.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/cFile.h') diff --git a/source/cFile.h b/source/cFile.h index 9f14c93f6..674ce93a2 100644 --- a/source/cFile.h +++ b/source/cFile.h @@ -58,12 +58,12 @@ public: cFile(void); /// Constructs and opens / creates the file specified, use IsOpen() to check for success - cFile(const char * iFileName, EMode iMode); + cFile(const AString & iFileName, EMode iMode); /// Auto-closes the file, if open ~cFile(); - bool Open(const char * iFileName, EMode iMode); + bool Open(const AString & iFileName, EMode iMode); void Close(void); bool IsOpen(void) const; bool IsEOF(void) const; -- cgit v1.2.3