This commit is contained in:
waterson%netscape.com 2000-09-14 23:10:37 +00:00
Родитель f5a85b19d2
Коммит fd3637116f
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -1887,7 +1887,7 @@ void
ConflictSet::GetMatchesForClusterKey(const ClusterKey& aKey, const MatchSet** aMatchSet)
{
// Retrieve all the matches in a cluster
*aMatchSet = NS_STATIC_CAST(const MatchSet*, PL_HashTableLookup(mClusters, &aKey));
*aMatchSet = NS_STATIC_CAST(MatchSet*, PL_HashTableLookup(mClusters, &aKey));
}
@ -1895,7 +1895,7 @@ void
ConflictSet::GetMatchesWithBindingDependency(nsIRDFResource* aResource, const MatchSet** aMatchSet)
{
// Retrieve all the matches whose bindings depend on the specified resource
*aMatchSet = NS_STATIC_CAST(const MatchSet*, PL_HashTableLookup(mBindingDependencies, aResource));
*aMatchSet = NS_STATIC_CAST(MatchSet*, PL_HashTableLookup(mBindingDependencies, aResource));
}

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

@ -1887,7 +1887,7 @@ void
ConflictSet::GetMatchesForClusterKey(const ClusterKey& aKey, const MatchSet** aMatchSet)
{
// Retrieve all the matches in a cluster
*aMatchSet = NS_STATIC_CAST(const MatchSet*, PL_HashTableLookup(mClusters, &aKey));
*aMatchSet = NS_STATIC_CAST(MatchSet*, PL_HashTableLookup(mClusters, &aKey));
}
@ -1895,7 +1895,7 @@ void
ConflictSet::GetMatchesWithBindingDependency(nsIRDFResource* aResource, const MatchSet** aMatchSet)
{
// Retrieve all the matches whose bindings depend on the specified resource
*aMatchSet = NS_STATIC_CAST(const MatchSet*, PL_HashTableLookup(mBindingDependencies, aResource));
*aMatchSet = NS_STATIC_CAST(MatchSet*, PL_HashTableLookup(mBindingDependencies, aResource));
}