Linux build

git-svn-id: svn://10.0.0.236/trunk@144832 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rogerl%netscape.com
2003-07-14 18:42:26 +00:00
parent 94b1a1de14
commit 8ad34f54c7
6 changed files with 65 additions and 83 deletions

View File

@@ -1248,11 +1248,11 @@ namespace MetaData {
nameList = new const String *[lMap->size()];
length = 0;
for (LocalBindingIterator bi = lMap->begin(), bend = lMap->end(); (bi != bend); bi++) {
LocalBindingEntry *lbe = *bi;
for (LocalBindingEntry::NS_Iterator i = lbe->begin(), end = lbe->end(); (i != end); i++) {
LocalBindingEntry &lbe = *bi;
for (LocalBindingEntry::NS_Iterator i = lbe.begin(), end = lbe.end(); (i != end); i++) {
LocalBindingEntry::NamespaceBinding ns = *i;
if ((ns.first == meta->publicNamespace) && ns.second->enumerable)
nameList[length++] = &lbe->name;
nameList[length++] = &lbe.name;
}
}
if (length == 0) {