Renaming nsIAllocator to nsIMemory (and nsAllocator to nsMemory). API cleanup/freeze. Bug #18433
git-svn-id: svn://10.0.0.236/trunk@71450 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -241,7 +241,7 @@ nsCmdLineService::~nsCmdLineService()
|
||||
while ( curr ) {
|
||||
char* str = NS_REINTERPRET_CAST(char*, mArgList[curr-1]);
|
||||
if ( str )
|
||||
nsAllocator::Free(str);
|
||||
nsMemory::Free(str);
|
||||
--curr;
|
||||
}
|
||||
|
||||
@@ -249,7 +249,7 @@ nsCmdLineService::~nsCmdLineService()
|
||||
while ( curr ) {
|
||||
char* str = NS_REINTERPRET_CAST(char*, mArgValueList[curr-1]);
|
||||
if ( str )
|
||||
nsAllocator::Free(str);
|
||||
nsMemory::Free(str);
|
||||
--curr;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user