Bug 635636 - Don't return a value from void function. a=bustage

This commit is contained in:
Mats Palmgren 2011-02-21 21:43:54 +01:00
parent b765f11bf5
commit 7958218e24

View File

@ -9203,7 +9203,7 @@ void
nsHTMLEditRules::DocumentModifiedWorker()
{
if (!mHTMLEditor) {
return NS_OK;
return;
}
nsCOMPtr<nsIHTMLEditor> kungFuDeathGrip(mHTMLEditor);
nsCOMPtr<nsISelection> selection;