diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-08-11 07:28:34 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-08-11 07:28:34 +0000 |
| commit | 551c284e35280b7b91a939fe7352e496ffea402a (patch) | |
| tree | 8f2e16642adccb99eb3440d1657c366c593d073a /source/QXmppRosterIq.cpp | |
| parent | 1457ccb919e3b3f6f2460629754d2edce8a1e86b (diff) | |
| download | qxmpp-551c284e35280b7b91a939fe7352e496ffea402a.tar.gz | |
QXmppRosterIq: renamed method arguments to match documentation
Diffstat (limited to 'source/QXmppRosterIq.cpp')
| -rw-r--r-- | source/QXmppRosterIq.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source/QXmppRosterIq.cpp b/source/QXmppRosterIq.cpp index 0077ea8b..6456b4e0 100644 --- a/source/QXmppRosterIq.cpp +++ b/source/QXmppRosterIq.cpp @@ -83,9 +83,9 @@ QString QXmppRosterIq::Item::bareJid() const /// \param bareJid as a QString /// -void QXmppRosterIq::Item::setBareJid(const QString& str) +void QXmppRosterIq::Item::setBareJid(const QString &bareJid) { - m_bareJid = str; + m_bareJid = bareJid; } /// Returns the groups of the roster entry. @@ -123,9 +123,9 @@ QString QXmppRosterIq::Item::name() const /// \param name as a QString /// -void QXmppRosterIq::Item::setName(const QString& str) +void QXmppRosterIq::Item::setName(const QString &name) { - m_name = str; + m_name = name; } /// Returns the subscription status of the roster entry. It is the "ask" @@ -148,9 +148,9 @@ QString QXmppRosterIq::Item::subscriptionStatus() const /// \param status as a QString /// -void QXmppRosterIq::Item::setSubscriptionStatus(const QString& str) +void QXmppRosterIq::Item::setSubscriptionStatus(const QString &status) { - m_subscriptionStatus = str; + m_subscriptionStatus = status; } /// Returns the subscription type of the roster entry. |
