mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 821901 - Fix build warnings in /toolkit/components/places/nsNavHistoryResult.cpp. r=mak
This commit is contained in:
parent
879247bc7e
commit
303c331b16
@ -880,7 +880,7 @@ bool
|
|||||||
nsNavHistoryContainerResultNode::DoesChildNeedResorting(uint32_t aIndex,
|
nsNavHistoryContainerResultNode::DoesChildNeedResorting(uint32_t aIndex,
|
||||||
SortComparator aComparator, const char* aData)
|
SortComparator aComparator, const char* aData)
|
||||||
{
|
{
|
||||||
NS_ASSERTION(aIndex >= 0 && aIndex < uint32_t(mChildren.Count()),
|
NS_ASSERTION(aIndex < uint32_t(mChildren.Count()),
|
||||||
"Input index out of range");
|
"Input index out of range");
|
||||||
if (mChildren.Count() == 1)
|
if (mChildren.Count() == 1)
|
||||||
return false;
|
return false;
|
||||||
@ -1626,8 +1626,9 @@ nsNavHistoryContainerResultNode::RemoveChildAt(int32_t aIndex,
|
|||||||
uint32_t oldAccessCount = 0;
|
uint32_t oldAccessCount = 0;
|
||||||
if (!aIsTemporary) {
|
if (!aIsTemporary) {
|
||||||
oldAccessCount = mAccessCount;
|
oldAccessCount = mAccessCount;
|
||||||
|
NS_ASSERTION(mAccessCount >= mChildren[aIndex]->mAccessCount,
|
||||||
|
"Invalid access count while updating!");
|
||||||
mAccessCount -= mChildren[aIndex]->mAccessCount;
|
mAccessCount -= mChildren[aIndex]->mAccessCount;
|
||||||
NS_ASSERTION(mAccessCount >= 0, "Invalid access count while updating!");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove it from our list and notify the result's observers.
|
// Remove it from our list and notify the result's observers.
|
||||||
@ -4024,8 +4025,7 @@ nsNavHistoryFolderResultNode::OnItemMoved(int64_t aItemId,
|
|||||||
NS_NOTREACHED("Can't find folder that is moving!");
|
NS_NOTREACHED("Can't find folder that is moving!");
|
||||||
return NS_ERROR_FAILURE;
|
return NS_ERROR_FAILURE;
|
||||||
}
|
}
|
||||||
NS_ASSERTION(index >= 0 && index < uint32_t(mChildren.Count()),
|
NS_ASSERTION(index < uint32_t(mChildren.Count()), "Invalid index!");
|
||||||
"Invalid index!");
|
|
||||||
node->mBookmarkIndex = aNewIndex;
|
node->mBookmarkIndex = aNewIndex;
|
||||||
|
|
||||||
// adjust position
|
// adjust position
|
||||||
|
Loading…
Reference in New Issue
Block a user