Skip to content
Snippets Groups Projects
Commit 80cc4a92 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

call: return confID by value

parent 87e4bc65
Branches
Tags
No related merge requests found
......@@ -97,11 +97,11 @@ class Call: public Recordable
* Return a reference on the conference id
* @return call id
*/
const std::string& getConfId() const {
std::string getConfId() const {
return _confID;
}
void setConfId (std::string id) {
void setConfId (const std::string &id) {
_confID = id;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment