nsIRequest->GetName() now directly uses nsCString msg. No longer needs string conversion.

This commit is contained in:
depstein%netscape.com 2002-03-26 23:55:54 +00:00
Родитель 4a3c6a3814
Коммит 2e737fce66
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -215,13 +215,12 @@ void FormatAndPrintOutput(const char *theInput, int theVar, int outputMode)
void RequestName(nsIRequest *request, nsCString &stringMsg,
int displayMethod)
{
nsXPIDLString theReqName;
nsresult rv;
rv = request->GetName(getter_Copies(theReqName));
rv = request->GetName(stringMsg);
if(NS_SUCCEEDED(rv))
{
stringMsg.AssignWithConversion(theReqName);
FormatAndPrintOutput("nsIRequest: The request name = ", stringMsg.get(), displayMethod);
}
else