OS/2 TB break - need to change true to PR_TRUE and false to PR_FALSE

This commit is contained in:
mkaply%us.ibm.com 2001-05-03 16:09:42 +00:00
Родитель 7e93cd88e0
Коммит 6b3384c0ba
2 изменённых файлов: 8 добавлений и 8 удалений

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

@ -2916,9 +2916,9 @@ static nsStyleStruct* GetNewMutableStyleStruct(nsStyleStructID aSID) {
nsStyleStruct* result = nsnull;
static PRBool initialized = false;
static PRBool initialized = PR_FALSE;
if (!initialized) {
initialized = true;
initialized = PR_TRUE;
for (short structType = 0; structType < eStyleStruct_Max; structType++) {
nsStyleStructID structID = (nsStyleStructID)(structType + 1);
for (short structIndex = 0; structIndex < kStructIndexMax; structIndex++) {
@ -2947,7 +2947,7 @@ static nsStyleStruct* GetNewMutableStyleStruct(nsStyleStructID aSID) {
break;
}
gStructPointer[structType][structIndex] = structPtr;
gStructBusy[structType][structIndex] = false;
gStructBusy[structType][structIndex] = PR_FALSE;
}
}
}
@ -2956,7 +2956,7 @@ static nsStyleStruct* GetNewMutableStyleStruct(nsStyleStructID aSID) {
for (short structIndex = 0; structIndex < kStructIndexMax; structIndex++) {
if (!gStructBusy[structType][structIndex]) {
result = gStructPointer[structType][structIndex];
gStructBusy[structType][structIndex] = true;
gStructBusy[structType][structIndex] = PR_TRUE;
break;
}
}

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

@ -2916,9 +2916,9 @@ static nsStyleStruct* GetNewMutableStyleStruct(nsStyleStructID aSID) {
nsStyleStruct* result = nsnull;
static PRBool initialized = false;
static PRBool initialized = PR_FALSE;
if (!initialized) {
initialized = true;
initialized = PR_TRUE;
for (short structType = 0; structType < eStyleStruct_Max; structType++) {
nsStyleStructID structID = (nsStyleStructID)(structType + 1);
for (short structIndex = 0; structIndex < kStructIndexMax; structIndex++) {
@ -2947,7 +2947,7 @@ static nsStyleStruct* GetNewMutableStyleStruct(nsStyleStructID aSID) {
break;
}
gStructPointer[structType][structIndex] = structPtr;
gStructBusy[structType][structIndex] = false;
gStructBusy[structType][structIndex] = PR_FALSE;
}
}
}
@ -2956,7 +2956,7 @@ static nsStyleStruct* GetNewMutableStyleStruct(nsStyleStructID aSID) {
for (short structIndex = 0; structIndex < kStructIndexMax; structIndex++) {
if (!gStructBusy[structType][structIndex]) {
result = gStructPointer[structType][structIndex];
gStructBusy[structType][structIndex] = true;
gStructBusy[structType][structIndex] = PR_TRUE;
break;
}
}