Bugzilla Bug 110080 change !NS_SUCCEEDED(status) to NS_FAILED(status)
s/!NS_SUCCEEDED/NS_FAILED/g;s/!NS_FAILED/NS_SUCCEEDED/g; r=dougt sr=hewitt git-svn-id: svn://10.0.0.236/trunk@108471 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -1381,7 +1381,7 @@ NS_IMETHODIMP nsPlaintextEditor::Cut()
|
||||
{
|
||||
nsCOMPtr<nsISelection> selection;
|
||||
nsresult res = GetSelection(getter_AddRefs(selection));
|
||||
if (!NS_SUCCEEDED(res))
|
||||
if (NS_FAILED(res))
|
||||
return res;
|
||||
|
||||
PRBool isCollapsed;
|
||||
@@ -1699,7 +1699,7 @@ nsPlaintextEditor::InsertAsQuotation(const nsAReadableString& aQuotedText,
|
||||
// Let the citer quote it for us:
|
||||
nsString quotedStuff;
|
||||
nsresult rv = citer->GetCiteString(aQuotedText, quotedStuff);
|
||||
if (!NS_SUCCEEDED(rv))
|
||||
if (NS_FAILED(rv))
|
||||
return rv;
|
||||
|
||||
// It's best to put a blank line after the quoted text so that mails
|
||||
|
||||
Reference in New Issue
Block a user