forked from mirrors/linphone-iphone
Create constructor methods starting with 'new' instead of 'create'.
This commit is contained in:
parent
5a92742e56
commit
3573ab67d3
1 changed files with 5 additions and 1 deletions
|
|
@ -240,8 +240,12 @@ private:
|
|||
}
|
||||
}
|
||||
}
|
||||
if (mPropertyBehaviour==None)
|
||||
if (mPropertyBehaviour==None) {
|
||||
mPropertyName="";
|
||||
if (mName.find("create")==0) {
|
||||
mName="new"+mName.substr(6,string::npos);
|
||||
}
|
||||
}
|
||||
}
|
||||
string mUid;
|
||||
Argument *mReturn;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue