update to sync with string API change

This commit is contained in:
rickg%netscape.com 1999-11-14 06:22:48 +00:00
parent 049ea93493
commit 1826780418

View file

@ -1023,11 +1023,11 @@ nsDOMSelection::ToString(nsString& aReturn)
} }
aReturn += "Anchor is "; aReturn += "Anchor is ";
aReturn += (unsigned long)(nsIDOMNode*)FetchAnchorNode(); aReturn += (long)(nsIDOMNode*)FetchAnchorNode();
aReturn += ", "; aReturn += ", ";
aReturn += FetchAnchorOffset(); aReturn += FetchAnchorOffset();
aReturn += "Focus is"; aReturn += "Focus is";
aReturn.Append((unsigned long)(nsIDOMNode*)FetchFocusNode(), 16); aReturn.Append((long)(nsIDOMNode*)FetchFocusNode(), 16);
aReturn += ", "; aReturn += ", ";
aReturn += FetchFocusOffset(); aReturn += FetchFocusOffset();
aReturn += "\n ... end of selection\n"; aReturn += "\n ... end of selection\n";