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/SettingsDialog.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/SettingsDialog.cpp')
-rw-r--r-- | plugins/XSoundNotify/src/SettingsDialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/XSoundNotify/src/SettingsDialog.cpp b/plugins/XSoundNotify/src/SettingsDialog.cpp index 151e07225e..3184bccdc7 100644 --- a/plugins/XSoundNotify/src/SettingsDialog.cpp +++ b/plugins/XSoundNotify/src/SettingsDialog.cpp @@ -86,7 +86,7 @@ LRESULT SettingsDialog::onChooseSound(WORD, WORD, HWND , BOOL&) setSoundLabelText(fileDlg.m_szFileName);
auto user = GetComboBoxData<UserDataTable::value_type>(_userCombo);
- user->second->setSound(xsn_string(fileDlg.m_szFileName));
+ user->second->setSound(std::tstring(fileDlg.m_szFileName));
_resetButton.EnableWindow(TRUE);
_playButton.EnableWindow(TRUE);
return 0;
@@ -95,7 +95,7 @@ LRESULT SettingsDialog::onChooseSound(WORD, WORD, HWND , BOOL&) LRESULT SettingsDialog::onResetSound(WORD, WORD wID, HWND , BOOL&)
{
auto user = GetComboBoxData<UserDataTable::value_type>(_userCombo);
- user->second->setSound(xsn_string());
+ user->second->setSound(std::tstring());
_resetButton.EnableWindow(FALSE);
_playButton.EnableWindow(FALSE);
_soundLabel.SetWindowText(TEXT(""));
|