summaryrefslogtreecommitdiff
path: root/plugins/XSoundNotify/src/SoundNotifyDataStorage.h
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2013-04-02 14:06:54 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2013-04-02 14:06:54 +0000
commit6270be1be1979c0ad41ea506200431bcfc79360c (patch)
tree4c456bd93cb848681fd135a983739042fc6e5594 /plugins/XSoundNotify/src/SoundNotifyDataStorage.h
parentff5a775b94465b30897964630af600fe5915fc51 (diff)
- XSoundNotify: boost removal pt 1 (patch from Mataes)
git-svn-id: http://svn.miranda-ng.org/main/trunk@4286 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/XSoundNotify/src/SoundNotifyDataStorage.h')
-rw-r--r--plugins/XSoundNotify/src/SoundNotifyDataStorage.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/XSoundNotify/src/SoundNotifyDataStorage.h b/plugins/XSoundNotify/src/SoundNotifyDataStorage.h
index 52d5c307a0..68c7d996f9 100644
--- a/plugins/XSoundNotify/src/SoundNotifyDataStorage.h
+++ b/plugins/XSoundNotify/src/SoundNotifyDataStorage.h
@@ -9,18 +9,18 @@ public:
void init();
void commit();
- ProtocolTable & getData();
+ ProtocolTable &getData();
protected:
void addContact(HANDLE contact);
- xsn_string getContactId(HANDLE contact, const ModuleString & module, const ProtocolString & proto);
+ std::tstring getContactId(HANDLE contact, const ModuleString &module, const ProtocolString &proto);
void registerProtocols();
private:
ProtocolTable _protocolTable;
ModuleConvertTable _moduleTable;
- typedef boost::function<xsn_string (HANDLE contact, const ModuleString & module)> getContactIdFunc;
+ typedef boost::function<std::tstring (HANDLE contact, const ModuleString &module)> getContactIdFunc;
typedef std::unordered_map<ProtocolString, getContactIdFunc> RegisteredProtocols;
RegisteredProtocols _registeredProtocols;
};