1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-17 10:52:46 +00:00

Get rid of DEL() and FREE() macros.

Part of CoreLibExe must die.
This commit is contained in:
Darryl Pogue
2011-10-23 20:52:33 -07:00
committed by Adam Johnson
parent be26b145df
commit 8a3f0cfd5b
88 changed files with 262 additions and 265 deletions

View File

@ -70,7 +70,7 @@ public:
plMessage(nil, nil, nil), fCmd( cmd ), fString(hsStrcpy(str))
{ SetBCastFlag( kBCastByExactType ); }
~plConsoleMsg() { FREE(fString); }
~plConsoleMsg() { free(fString); }
CLASSNAME_REGISTER( plConsoleMsg );
GETINTERFACE_ANY( plConsoleMsg, plMessage );
@ -79,7 +79,7 @@ public:
const char *GetString( void ) const { return fString; };
void SetCmd (uint32_t cmd) { fCmd = cmd; }
void SetString (const char str[]) { FREE(fString); fString = hsStrcpy(str); }
void SetString (const char str[]) { free(fString); fString = hsStrcpy(str); }
virtual void Read(hsStream* s, hsResMgr* mgr)
{