зеркало из https://github.com/mozilla/gecko-dev.git
nsIRequest->GetName() now directly uses nsCString msg. No longer needs string conversion.
This commit is contained in:
Родитель
4a3c6a3814
Коммит
2e737fce66
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче