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/xsn_main.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/xsn_main.cpp')
-rw-r--r-- | plugins/XSoundNotify/src/xsn_main.cpp | 2 |
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);
}
|