From fddea0ec2c7913e36b25f26a88b45e3de5c24a93 Mon Sep 17 00:00:00 2001 From: "bryner%netscape.com" Date: Thu, 21 Mar 2002 08:50:45 +0000 Subject: [PATCH] Fixing bustage from darin's checkin. Not part of the build. git-svn-id: svn://10.0.0.236/trunk@117040 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/widget/src/cocoa/nsSound.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/widget/src/cocoa/nsSound.cpp b/mozilla/widget/src/cocoa/nsSound.cpp index 989aadebd92..58692c3e34d 100644 --- a/mozilla/widget/src/cocoa/nsSound.cpp +++ b/mozilla/widget/src/cocoa/nsSound.cpp @@ -691,13 +691,13 @@ nsMovieSoundRequest::OnStreamComplete(nsIStreamLoader *aLoader, if (NS_FAILED(aStatus)) return NS_ERROR_FAILURE; - nsXPIDLCString contentType; + nsCAutoString contentType; nsCOMPtr request; aLoader->GetRequest(getter_AddRefs(request)); nsCOMPtr channel = do_QueryInterface(request); if (channel) - channel->GetContentType(getter_Copies(contentType)); + channel->GetContentType(contentType); // we could use a Pointer data handler type, and avoid this // allocation/copy, in QuickTime 5 and above.