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