Bug 871905 - Fix build error on android platform. r=vicamo

This commit is contained in:
Chuck Lee 2013-05-16 11:13:39 +08:00
parent ef018f54a0
commit 83f16e5607

View File

@ -451,7 +451,8 @@ Java_org_mozilla_gecko_GeckoSmsManager_notifySmsDeleted(JNIEnv* jenv, jclass,
AndroidBridge::Bridge()->DequeueSmsRequest(mRequestId);
NS_ENSURE_TRUE(request, NS_ERROR_FAILURE);
request->NotifyMessageDeleted(mDeleted);
// For android, we support only single SMS deletion.
request->NotifyMessageDeleted(&mDeleted, 1);
return NS_OK;
}