Closed
Bug 7872
Opened 26 years ago
Closed 26 years ago
setter method for string attributes not getting set to const
Categories
(Core :: XPConnect, defect, P3)
Tracking
()
M7
People
(Reporter: mscott, Assigned: jband_mozilla)
Details
I have an attribute in an IDL file like:
attribute string myString;
I was expecting the XPIDL compiler to generate a setter for the function to pass
the string as an IN parameter:
NS_IMETHOD SetMyString(const char * myString) = 0;
But instead, I get the following:
NS_IMETHOD SetMyString(char * myString) = 0;
| Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → DUPLICATE
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Updated•26 years ago
|
Status: VERIFIED → CLOSED
You need to log in
before you can comment on or make changes to this bug.
Description
•