mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-06 00:31:27 +00:00
Fix mail build bustage. [Who knew they were using a composite datasource? And, an even more interesting question is why, when it apparently only allows one datasource to be used... ?]
This commit is contained in:
parent
b6d2de1cb0
commit
409f4b2a09
@ -399,6 +399,36 @@ NS_IMETHODIMP nsMessageViewDataSource::DoCommand(nsISupportsArray/*<nsIRDFResour
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsMessageViewDataSource::GetAllowNegativeAssertions(PRBool *aAllowNegativeAssertions)
|
||||
{
|
||||
// *aAllowNegativeAssertions = mAllowNegativeAssertions;
|
||||
*aAllowNegativeAssertions = PR_TRUE; // XXX fix build bustage
|
||||
return(NS_OK);
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsMessageViewDataSource::SetAllowNegativeAssertions(PRBool aAllowNegativeAssertions)
|
||||
{
|
||||
// mAllowNegativeAssertions = aAllowNegativeAssertions;
|
||||
return(NS_OK);
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsMessageViewDataSource::GetCoalesceDuplicateArcs(PRBool *aCoalesceDuplicateArcs)
|
||||
{
|
||||
// *aCoalesceDuplicateArcs = mCoalesceDuplicateArcs;
|
||||
*aCoalesceDuplicateArcs = PR_TRUE; // XXX fix build bustage
|
||||
return(NS_OK);
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsMessageViewDataSource::SetCoalesceDuplicateArcs(PRBool aCoalesceDuplicateArcs)
|
||||
{
|
||||
// mCoalesceDuplicateArcs = aCoalesceDuplicateArcs;
|
||||
return(NS_OK);
|
||||
}
|
||||
|
||||
//We're only going to allow one datasource at a time.
|
||||
NS_IMETHODIMP nsMessageViewDataSource::AddDataSource(nsIRDFDataSource* source)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user