'bool CopyFile2( CString sSrcFile, CString sDstFile ); // using "CopyFile" gives "unresolved external" link error in VC6'

use "FileCopy" instead
This commit is contained in:
Glenn Maynard
2003-12-21 05:59:52 +00:00
parent ba3ea672c3
commit 75a1048c75
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1361,7 +1361,7 @@ void ProfileManager::SaveStatsWebPageToDir( CString sDir, MemoryCard mc )
// Copy CSS file from theme. If the copy fails, oh well...
//
CString sStyleFile = THEME->GetPathToO("ProfileManager style.css");
CopyFile2( sStyleFile, sDir+STYLE_CSS_FILE );
FileCopy( sStyleFile, sDir+STYLE_CSS_FILE );
LOG->Trace( "Done." );
}