summaryrefslogtreecommitdiff
path: root/plugins/XSoundNotify/src/SoundNotifyData.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/XSoundNotify/src/SoundNotifyData.cpp')
-rw-r--r--plugins/XSoundNotify/src/SoundNotifyData.cpp6
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;
}