diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-04-02 14:06:54 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-04-02 14:06:54 +0000 |
commit | 6270be1be1979c0ad41ea506200431bcfc79360c (patch) | |
tree | 4c456bd93cb848681fd135a983739042fc6e5594 /plugins/XSoundNotify/src/SoundNotifyData.cpp | |
parent | ff5a775b94465b30897964630af600fe5915fc51 (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.cpp')
-rw-r--r-- | plugins/XSoundNotify/src/SoundNotifyData.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/XSoundNotify/src/SoundNotifyData.cpp b/plugins/XSoundNotify/src/SoundNotifyData.cpp index 29723384c7..ec153d26c4 100644 --- a/plugins/XSoundNotify/src/SoundNotifyData.cpp +++ b/plugins/XSoundNotify/src/SoundNotifyData.cpp @@ -5,12 +5,12 @@ SoundNotifyData::SoundNotifyData() : _contact(0), _soundChanged(false) }
-SoundNotifyData::SoundNotifyData(HANDLE contact, const ModuleString & module, const xsn_string & sound) :
+SoundNotifyData::SoundNotifyData(HANDLE contact, const ModuleString & module, const std::tstring &sound) :
_contact(contact), _soundPath(sound), _soundChanged(false)
{
}
-void SoundNotifyData::setSound(const xsn_string & sound)
+void SoundNotifyData::setSound(const std::tstring &sound)
{
_soundChanged = true;
_soundPath = sound;
@@ -21,7 +21,7 @@ HANDLE SoundNotifyData::contact() const return _contact;
}
-const xsn_string & SoundNotifyData::soundPath() const
+const std::tstring & SoundNotifyData::soundPath() const
{
return _soundPath;
}
|