This commit is contained in:
rickg%netscape.com 1999-06-03 23:03:08 +00:00
Родитель 0ecf2ad741
Коммит 81fa68ad56
3 изменённых файлов: 9 добавлений и 9 удалений

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

@ -77,11 +77,11 @@ public:
}
}
virtual PRBool Alloc(nsStr& aDest,PRInt32 aCount) {
virtual PRBool Alloc(nsStr& aDest,PRUint32 aCount) {
//we're given the acount value in charunits; we have to scale up by the charsize.
int theShift=4;
PRInt32 theNewCapacity=eDefaultSize;
int theShift=4;
PRUint32 theNewCapacity=eDefaultSize;
while(theNewCapacity<aCount){
theNewCapacity<<=1;
theShift++;

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

@ -77,11 +77,11 @@ public:
}
}
virtual PRBool Alloc(nsStr& aDest,PRInt32 aCount) {
virtual PRBool Alloc(nsStr& aDest,PRUint32 aCount) {
//we're given the acount value in charunits; we have to scale up by the charsize.
int theShift=4;
PRInt32 theNewCapacity=eDefaultSize;
int theShift=4;
PRUint32 theNewCapacity=eDefaultSize;
while(theNewCapacity<aCount){
theNewCapacity<<=1;
theShift++;

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

@ -77,11 +77,11 @@ public:
}
}
virtual PRBool Alloc(nsStr& aDest,PRInt32 aCount) {
virtual PRBool Alloc(nsStr& aDest,PRUint32 aCount) {
//we're given the acount value in charunits; we have to scale up by the charsize.
int theShift=4;
PRInt32 theNewCapacity=eDefaultSize;
int theShift=4;
PRUint32 theNewCapacity=eDefaultSize;
while(theNewCapacity<aCount){
theNewCapacity<<=1;
theShift++;