trying to get around string problem

This commit is contained in:
rickg%netscape.com 1999-11-14 07:50:15 +00:00
Родитель aab46f3a3b
Коммит dc381070e2
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1023,8 +1023,8 @@ nsDOMSelection::ToString(nsString& aReturn)
}
aReturn += "Anchor is ";
long theLong = (long)(nsIDOMNode*)FetchAnchorNode();
aReturn.Append(theLong);
PRInt32 theInt = (PRInt32)(nsIDOMNode*)FetchAnchorNode();
aReturn.Append(theInt);
aReturn += ", ";
aReturn += FetchAnchorOffset();
aReturn += "Focus is";