summaryrefslogtreecommitdiff
path: root/plugins/XSoundNotify/src/SoundNotifyData.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/SoundNotifyData.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/SoundNotifyData.h')
-rw-r--r--plugins/XSoundNotify/src/SoundNotifyData.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/XSoundNotify/src/SoundNotifyData.h b/plugins/XSoundNotify/src/SoundNotifyData.h
index 13076f76e2..13cc354b3d 100644
--- a/plugins/XSoundNotify/src/SoundNotifyData.h
+++ b/plugins/XSoundNotify/src/SoundNotifyData.h
@@ -5,24 +5,24 @@ class SoundNotifyData
{
public:
SoundNotifyData();
- SoundNotifyData(HANDLE contact, const ModuleString & module, const xsn_string & sound);
+ SoundNotifyData(HANDLE contact, const ModuleString &module, const std::tstring &sound);
- void setSound(const xsn_string & sound);
+ void setSound(const std::tstring &sound);
HANDLE contact() const;
- const xsn_string & soundPath() const;
- const ModuleString & module() const;
+ const std::tstring &soundPath() const;
+ const ModuleString &module() const;
bool isSoundChanged() const;
private:
HANDLE _contact;
ModuleString _module;
- xsn_string _soundPath;
+ std::tstring _soundPath;
bool _soundChanged;
};
typedef std::shared_ptr<SoundNotifyData> SoundNotifyDataPtr;
-typedef std::unordered_map<xsn_string, SoundNotifyDataPtr> UserDataTable;
+typedef std::unordered_map<std::tstring, SoundNotifyDataPtr> UserDataTable;
typedef std::unordered_map<ProtocolString, UserDataTable> ProtocolTable;
typedef std::unordered_map<ModuleString, ProtocolString> ModuleConvertTable;