summaryrefslogtreecommitdiff
path: root/plugins/XSoundNotify/src/xsn_main.cpp
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/xsn_main.cpp
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/xsn_main.cpp')
-rw-r--r--plugins/XSoundNotify/src/xsn_main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/XSoundNotify/src/xsn_main.cpp b/plugins/XSoundNotify/src/xsn_main.cpp
index 5bd0c3b530..1a0aaf82fe 100644
--- a/plugins/XSoundNotify/src/xsn_main.cpp
+++ b/plugins/XSoundNotify/src/xsn_main.cpp
@@ -62,7 +62,7 @@ INT processEvent(WPARAM wParam, LPARAM lParam)
if (!isReceiveMessage(lParam))
return 0;
- xsn_string sound = getContactSound((HANDLE)wParam);
+ std::tstring sound = getContactSound((HANDLE)wParam);
if (!sound.empty())
PlaySound(sound.c_str(), nullptr, SND_ASYNC | SND_FILENAME);
}