mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 18:08:58 +00:00
Cleanup extraneous [const] tags in the interface that are inplicit because the args
are listed as input parameters. sr=darin
This commit is contained in:
parent
7c84914071
commit
e91eb18b8d
@ -72,7 +72,7 @@ interface mozITXTToHTMLConv : nsIStreamConverter {
|
||||
@result "<", ">" and "&" are escaped and HTML tags are inserted where
|
||||
appropriate.
|
||||
*/
|
||||
wstring scanTXT([const] in wstring text, in unsigned long whattodo);
|
||||
wstring scanTXT(in wstring text, in unsigned long whattodo);
|
||||
|
||||
/**
|
||||
Adds additional formatting to user edited text, that the user was too lazy
|
||||
@ -91,7 +91,7 @@ interface mozITXTToHTMLConv : nsIStreamConverter {
|
||||
@param whattodo: Bitfield describing the modes of operation
|
||||
@result Additional HTML tags are inserted where appropriate.
|
||||
*/
|
||||
wstring scanHTML([const] in wstring text, in unsigned long whattodo);
|
||||
wstring scanHTML(in wstring text, in unsigned long whattodo);
|
||||
|
||||
/**
|
||||
@param line: line in original msg, possibly starting starting with
|
||||
@ -103,7 +103,7 @@ interface mozITXTToHTMLConv : nsIStreamConverter {
|
||||
@return Cite Level, i.e. number of txt quote tags found, i.e. number of
|
||||
nested quotes.
|
||||
*/
|
||||
unsigned long citeLevelTXT([const] in wstring line,
|
||||
unsigned long citeLevelTXT(in wstring line,
|
||||
out unsigned long logLineStart);
|
||||
|
||||
/**
|
||||
@ -115,5 +115,5 @@ interface mozITXTToHTMLConv : nsIStreamConverter {
|
||||
aEndPos --> index of the last character in the url (-1 if no url found)
|
||||
*/
|
||||
|
||||
void findURLInPlaintext([const] in wstring text, in long aLength, in long aPos, out long aStartPos, out long aEndPos);
|
||||
void findURLInPlaintext(in wstring text, in long aLength, in long aPos, out long aStartPos, out long aEndPos);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user