Bug 711488 - Replace some forgotten PR_TRUE with true in dom/battery && dom/sms r=mounir

This commit is contained in:
Vivien Nicolas 2011-12-19 10:11:16 +01:00
parent 2166d4e5c8
commit 6562304b10
2 changed files with 2 additions and 2 deletions

View File

@ -166,7 +166,7 @@ BatteryManager::DispatchTrustedEventToSelf(const nsAString& aEventName)
nsresult rv = event->InitEvent(aEventName, false, false);
NS_ENSURE_SUCCESS(rv, rv);
rv = event->SetTrusted(PR_TRUE);
rv = event->SetTrusted(true);
NS_ENSURE_SUCCESS(rv, rv);
bool dummy;

View File

@ -137,7 +137,7 @@ SmsManager::DispatchTrustedSmsEventToSelf(const nsAString& aEventName, nsIDOMMoz
false, aMessage);
NS_ENSURE_SUCCESS(rv, rv);
rv = event->SetTrusted(PR_TRUE);
rv = event->SetTrusted(true);
NS_ENSURE_SUCCESS(rv, rv);
bool dummy;