diff options
Diffstat (limited to 'protocols/SkypeWeb/src/skype_proto.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/skype_proto.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/protocols/SkypeWeb/src/skype_proto.cpp b/protocols/SkypeWeb/src/skype_proto.cpp index d9e5dc46db..a8f8e15cfb 100644 --- a/protocols/SkypeWeb/src/skype_proto.cpp +++ b/protocols/SkypeWeb/src/skype_proto.cpp @@ -22,9 +22,15 @@ CSkypeProto::CSkypeProto(const char* protoName, const wchar_t* userName) : m_PopupClasses(1), m_OutMessages(3, PtrKeySortT), m_bThreadsTerminated(false), - m_opts(this), m_impl(*this), - m_requests(1) + m_requests(1), + bAutoHistorySync(this, "AutoSync", true), + bMarkAllAsUnread(this, "MarkMesUnread", true), + bUseHostnameAsPlace(this, "UseHostName", true), + bUseBBCodes(this, "UseBBCodes", true), + bUseServerTime(this, "UseServerTime", false), + wstrCListGroup(this, SKYPE_SETTINGS_GROUP, L"Skype"), + wstrPlace(this, "Place", L"") { NETLIBUSER nlu = {}; CMStringW name(FORMAT, TranslateT("%s connection"), m_tszUserName); |