forked from mirrors/gecko-dev
update to sync with string API change
This commit is contained in:
parent
049ea93493
commit
1826780418
1 changed files with 2 additions and 2 deletions
|
|
@ -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";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue