From 6270be1be1979c0ad41ea506200431bcfc79360c Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Tue, 2 Apr 2013 14:06:54 +0000 Subject: - XSoundNotify: boost removal pt 1 (patch from Mataes) git-svn-id: http://svn.miranda-ng.org/main/trunk@4286 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/XSoundNotify/src/SoundNotifyDataStorage.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/XSoundNotify/src/SoundNotifyDataStorage.cpp') diff --git a/plugins/XSoundNotify/src/SoundNotifyDataStorage.cpp b/plugins/XSoundNotify/src/SoundNotifyDataStorage.cpp index 93a81bfed6..d7fca9638f 100644 --- a/plugins/XSoundNotify/src/SoundNotifyDataStorage.cpp +++ b/plugins/XSoundNotify/src/SoundNotifyDataStorage.cpp @@ -41,7 +41,7 @@ void SoundNotifyDataStorage::addContact(HANDLE contact) { ModuleString module = getContactModule(contact); ProtocolString proto = _moduleTable[module]; - xsn_string user = getContactId(contact, module, proto); + std::tstring user = getContactId(contact, module, proto); if (user.empty()) return ; @@ -50,11 +50,11 @@ void SoundNotifyDataStorage::addContact(HANDLE contact) _protocolTable[proto][user] = SoundNotifyDataPtr(new SoundNotifyData(contact, module, sound.toString())); } -xsn_string SoundNotifyDataStorage::getContactId(HANDLE contact, const ModuleString & module, const ProtocolString & proto) +std::tstring SoundNotifyDataStorage::getContactId(HANDLE contact, const ModuleString &module, const ProtocolString &proto) { auto it = _registeredProtocols.find(proto); if (it == _registeredProtocols.end()) - return xsn_string(); + return std::tstring(); return it->second(contact, module); } -- cgit v1.2.3