summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2012-04-23 08:02:18 (GMT)
committerKevin Smith <git@kismith.co.uk>2012-04-23 08:02:18 (GMT)
commitb5a852ab35d563e1730dfc12fd652a62cada5e8e (patch)
tree551c92086349fa707689b2482b7464e8dd627107
parent8e9f2483483adf496bdc2070cb6d4c348c74f616 (diff)
downloadswift-contrib-b5a852ab35d563e1730dfc12fd652a62cada5e8e.zip
swift-contrib-b5a852ab35d563e1730dfc12fd652a62cada5e8e.tar.bz2
Fix member variables to not be const refs
-rw-r--r--Swift/Controllers/UIEvents/RequestAddUserDialogUIEvent.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swift/Controllers/UIEvents/RequestAddUserDialogUIEvent.h b/Swift/Controllers/UIEvents/RequestAddUserDialogUIEvent.h
index 42be4f3..5a071cf 100644
--- a/Swift/Controllers/UIEvents/RequestAddUserDialogUIEvent.h
+++ b/Swift/Controllers/UIEvents/RequestAddUserDialogUIEvent.h
@@ -22,8 +22,8 @@ namespace Swift {
const std::string& getPredefinedName() const { return preName_; };
private:
- const JID& preJID_;
- const std::string& preName_;
+ JID preJID_;
+ std::string preName_;
};
}