diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2016-10-23 10:27:52 +0200 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2016-10-23 10:27:52 +0200 |
commit | 25aa0d05c5eb418887c3f02f91caa251d1aaa619 (patch) | |
tree | 22c3fad93e12c728beb60295b34d04ea0ca3a75e /plugins/StatusManager/src | |
parent | 7655d2bebd06ad725fd0f32454329020e587f8dd (diff) |
StatusManager: Resource fixes
Diffstat (limited to 'plugins/StatusManager/src')
-rw-r--r-- | plugins/StatusManager/src/aaa_msgoptions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/StatusManager/src/aaa_msgoptions.cpp b/plugins/StatusManager/src/aaa_msgoptions.cpp index 7bf788aa9b..5647199a43 100644 --- a/plugins/StatusManager/src/aaa_msgoptions.cpp +++ b/plugins/StatusManager/src/aaa_msgoptions.cpp @@ -126,8 +126,8 @@ INT_PTR CALLBACK DlgProcAutoAwayMsgOpts(HWND hwndDlg, UINT msg, WPARAM wParam, L if (settings[i]->msg != NULL) SetDlgItemTextA(hwndDlg, IDC_STATUSMSG, settings[i]->msg); else { - ptrW msg((wchar_t*)CallService(MS_AWAYMSG_GETSTATUSMSGW, settings[i]->status, 0)); - SetDlgItemText(hwndDlg, IDC_STATUSMSG, (msg != NULL) ? msg : L""); + ptrW msgw((wchar_t*)CallService(MS_AWAYMSG_GETSTATUSMSGW, settings[i]->status, 0)); + SetDlgItemText(hwndDlg, IDC_STATUSMSG, (msgw != NULL) ? msgw : L""); } if (settings[i]->useCustom) { |