summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/skype_proto.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-02-23 20:19:10 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-02-23 20:19:10 +0000
commitfce9734123b15ceabd38043b02c16b6ee21ecadf (patch)
tree0e43ce3732419bc7411cb077b676e4931f5edaa7 /protocols/Skype/src/skype_proto.cpp
parent1292768bee7d27c5d0ac8d68b4d794f7e2364ecd (diff)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3742 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_proto.cpp')
-rw-r--r--protocols/Skype/src/skype_proto.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/protocols/Skype/src/skype_proto.cpp b/protocols/Skype/src/skype_proto.cpp
index 1650a82c76..18a8483897 100644
--- a/protocols/Skype/src/skype_proto.cpp
+++ b/protocols/Skype/src/skype_proto.cpp
@@ -2,11 +2,7 @@
CSkypeProto::CSkypeProto(const char* protoName, const TCHAR* userName)
{
- ProtoConstructor(this, aProtoName, aUserName);
-
- this->m_szProtoName = ::mir_strdup(protoName);
- ::strlwr(m_szProtoName);
- this->m_szProtoName[0] = ::toupper(this->m_szProtoName[0]);
+ ProtoConstructor(this, protoName, userName);
//this->login = NULL;
this->password = NULL;
@@ -33,7 +29,6 @@ CSkypeProto::~CSkypeProto()
::mir_free(this->login);
::mir_free(this->password);
- ::mir_free(this->m_szProtoName);
ProtoDestructor(this);
}