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

git-svn-id: svn://10.0.0.236/trunk@106533 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jaggernaut%netscape.com 2001-10-29 09:12:39 +00:00
parent a1a1fd2080
commit 20333c98e2

View File

@ -93,7 +93,7 @@ TestObserver::Observe( nsISupports *aSubject,
*/
cout << mName << " has observed something: subject@" << (void*)aSubject
<< " name=" << NS_REINTERPRET_CAST(TestObserver*, NS_REINTERPRET_CAST(void*, aSubject))->mName
<< " aTopic=" << topic
<< " aTopic=" << topic.get()
<< " someData=" << data << endl;
return NS_OK;
}