From 80cc4a9211e6ff9d12c0aa04913565bffce941b6 Mon Sep 17 00:00:00 2001 From: Tristan Matthews <tristan.matthews@savoirfairelinux.com> Date: Mon, 15 Aug 2011 13:18:41 -0400 Subject: [PATCH] call: return confID by value --- daemon/src/call.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon/src/call.h b/daemon/src/call.h index 6457929c37..d05daef07f 100644 --- a/daemon/src/call.h +++ b/daemon/src/call.h @@ -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; } -- GitLab