Bug 835446: Convert nsNavHistoryResultNode::mTransitionType to be uint32_t rather than int32_t, to fix build warning when passing it to nsTArray<uint32_t>::Contains(). r=mak

This commit is contained in:
Daniel Holbert 2013-01-29 15:25:01 -08:00
Родитель a08f30c509
Коммит 208532a36e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -382,7 +382,7 @@ public:
bool mHidden;
// Transition type used when this node represents a single visit.
int32_t mTransitionType;
uint32_t mTransitionType;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsNavHistoryResultNode, NS_NAVHISTORYRESULTNODE_IID)