diff options
Diffstat (limited to 'plugins/XSoundNotify/src/SoundNotifyDataStorage.h')
-rw-r--r-- | plugins/XSoundNotify/src/SoundNotifyDataStorage.h | 6 |
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;
};
|