From c6da25501a77323f9b9d5f5e19a9df8feee129a6 Mon Sep 17 00:00:00 2001 From: DarthArgus Date: Mon, 27 Oct 2014 21:06:48 -0700 Subject: [PATCH] bug fix --- .../soePlatform/ChatAPI/projects/ChatAPI/ChatAvatarCore.cpp | 2 +- .../soePlatform/ChatAPI/projects/ChatAPI/ChatAvatarCore.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/external/3rd/library/soePlatform/ChatAPI/projects/ChatAPI/ChatAvatarCore.cpp b/external/3rd/library/soePlatform/ChatAPI/projects/ChatAPI/ChatAvatarCore.cpp index 7eab52a8..aa1981c5 100644 --- a/external/3rd/library/soePlatform/ChatAPI/projects/ChatAPI/ChatAvatarCore.cpp +++ b/external/3rd/library/soePlatform/ChatAPI/projects/ChatAPI/ChatAvatarCore.cpp @@ -168,7 +168,7 @@ void ChatAvatarCore::setLoginPriority(int loginPriority) m_loginPriority = loginPriority; } -void ChatAvatarCore::setEmail(static const Plat_Unicode::String &email) +void ChatAvatarCore::setEmail(static const Plat_Unicode::String email) { m_email = email; } diff --git a/external/3rd/library/soePlatform/ChatAPI/projects/ChatAPI/ChatAvatarCore.h b/external/3rd/library/soePlatform/ChatAPI/projects/ChatAPI/ChatAvatarCore.h index 7ba48a71..ebd3fc81 100644 --- a/external/3rd/library/soePlatform/ChatAPI/projects/ChatAPI/ChatAvatarCore.h +++ b/external/3rd/library/soePlatform/ChatAPI/projects/ChatAPI/ChatAvatarCore.h @@ -47,7 +47,7 @@ namespace ChatSystem void setAttributes(unsigned long attributes); void setLoginPriority(int loginPriority); - void setEmail(const Plat_Unicode::String &email); + void setEmail(const Plat_Unicode::String email); void setInboxLimit(unsigned inboxLimit); void setStatusMessage(const Plat_Unicode::String &statusMessage);