Bugzilla
Quick Search
Browse
Advanced Search
Reports
Quick Search Help
Documentation
New Account
Log In
Login with GitHub
Remember
Forgot Password
Mozilla Home
Privacy
Cookies
Legal
Attachment 448 Details for
Bug 3440
the fix
patch.txt (text/plain), 1.57 KB, created by
Chris Waterson
(
hide
)
Description:
the fix
Filename:
MIME Type:
Creator:
Chris Waterson
Size:
1.57 KB
patch
obsolete
>Index: nsRDFGenericBuilder.cpp >=================================================================== >RCS file: /cvsroot/mozilla/rdf/content/src/nsRDFGenericBuilder.cpp,v >retrieving revision 1.49 >diff -c -r1.49 nsRDFGenericBuilder.cpp >*** nsRDFGenericBuilder.cpp 1999/06/12 19:35:10 1.49 >--- nsRDFGenericBuilder.cpp 1999/06/17 21:40:23 >*************** >*** 2305,2316 **** > > // Clear the contents-generated attribute so that the next time we > // come back, we'll regenerate the kids we just killed. >! if (NS_FAILED(rv = aElement->UnsetAttribute(kNameSpaceID_None, >! kItemContentsGeneratedAtom, >! PR_FALSE))) { >! NS_ERROR("unable to clear contents-generated attribute"); >! return rv; >! } > > return NS_OK; > } >--- 2305,2327 ---- > > // Clear the contents-generated attribute so that the next time we > // come back, we'll regenerate the kids we just killed. >! rv = aElement->UnsetAttribute(kNameSpaceID_None, >! kItemContentsGeneratedAtom, >! PR_FALSE); >! if (NS_FAILED(rv)) return rv; >! >! // This is a _total_ hack to make sure that any XUL we blow away >! // gets rebuilt. >! rv = aElement->UnsetAttribute(kNameSpaceID_None, >! kXULContentsGeneratedAtom, >! PR_FALSE); >! if (NS_FAILED(rv)) return rv; >! >! rv = aElement->SetAttribute(kNameSpaceID_RDF, >! kContainerAtom, >! "true", >! PR_FALSE); >! if (NS_FAILED(rv)) return rv; > > return NS_OK; > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
Actions:
View
Attachments on
bug 3440
: 448