diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-04-02 19:47:02 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-04-02 19:47:02 +0000 |
commit | 366ba3d2502c86c8691f72207512b72fc7ccae2a (patch) | |
tree | 46a4896b076ffab3687dbaeb772dcbd61b23a9ec /plugins/XSoundNotify/src/SoundNotifyDataStorage.h | |
parent | 365a6630e46aea4cba8df43f3fd1d553a2823723 (diff) |
XSoundNotify: boost removal pt 2
git-svn-id: http://svn.miranda-ng.org/main/trunk@4292 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/XSoundNotify/src/SoundNotifyDataStorage.h')
-rw-r--r-- | plugins/XSoundNotify/src/SoundNotifyDataStorage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/XSoundNotify/src/SoundNotifyDataStorage.h b/plugins/XSoundNotify/src/SoundNotifyDataStorage.h index 68c7d996f9..3df9dd7eec 100644 --- a/plugins/XSoundNotify/src/SoundNotifyDataStorage.h +++ b/plugins/XSoundNotify/src/SoundNotifyDataStorage.h @@ -20,9 +20,9 @@ private: ProtocolTable _protocolTable;
ModuleConvertTable _moduleTable;
- typedef boost::function<std::tstring (HANDLE contact, const ModuleString &module)> getContactIdFunc;
+ typedef std::tstring (*getContactIdFunc)(HANDLE contact, const ModuleString &module);
typedef std::unordered_map<ProtocolString, getContactIdFunc> RegisteredProtocols;
- RegisteredProtocols _registeredProtocols;
+ RegisteredProtocols _registeredProtocols;
};
#endif
|