Bug 741333 - Remove PRBool/PR_TRUE/PR_FALSE that crept in r=Ms2ger

This commit is contained in:
Veeraya Pupatwibul
2012-04-04 11:15:10 +02:00
parent 8ad1cd3d6d
commit 054cc031c2
27 changed files with 56 additions and 56 deletions

View File

@@ -164,7 +164,7 @@ NS_IMETHODIMP nsFileResult::GetMatchCount(PRUint32 *aMatchCount)
NS_IMETHODIMP nsFileResult::GetTypeAheadResult(bool *aTypeAheadResult)
{
NS_ENSURE_ARG_POINTER(aTypeAheadResult);
*aTypeAheadResult = PR_FALSE;
*aTypeAheadResult = false;
return NS_OK;
}