Bug 53057: Fixing up users of implicit |CharT*| conversion operators for nsCString to use |.get()| instead, rr=dbaron, rs=scc

This commit is contained in:
jaggernaut%netscape.com 2001-10-25 09:44:29 +00:00
Родитель 41a37365ad
Коммит 3be5c9f8a6
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -676,7 +676,7 @@ NS_IMETHODIMP imgRequest::OnDataAvailable(nsIRequest *aRequest, nsISupports *ctx
nsCAutoString conid("@mozilla.org/image/decoder;2?type=");
conid += mContentType;
mDecoder = do_CreateInstance(conid);
mDecoder = do_CreateInstance(conid.get());
if (!mDecoder) {
PR_LOG(gImgLog, PR_LOG_WARNING,