diff options
author | René Schümann <white06tiger@gmail.com> | 2014-12-27 05:56:38 +0000 |
---|---|---|
committer | René Schümann <white06tiger@gmail.com> | 2014-12-27 05:56:38 +0000 |
commit | 6d6b16c8591d375a4a4a2db1ebfb307116df3fd0 (patch) | |
tree | 0570f547e024d1992847e11616086b8fff7b6156 /plugins/SendScreenshotPlus/src/UAboutForm.cpp | |
parent | 6ffc309d05545fe59bdca2b061b605e1dd63c664 (diff) |
SendSS:
- cleaned up our mir_string stuff and removed lots of custom implementations as we use those of NG core now (couldn't get rid of mir_string though.. we still use some custom stuff)
git-svn-id: http://svn.miranda-ng.org/main/trunk@11650 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SendScreenshotPlus/src/UAboutForm.cpp')
-rw-r--r-- | plugins/SendScreenshotPlus/src/UAboutForm.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/SendScreenshotPlus/src/UAboutForm.cpp b/plugins/SendScreenshotPlus/src/UAboutForm.cpp index ddb97052ac..9131f69080 100644 --- a/plugins/SendScreenshotPlus/src/UAboutForm.cpp +++ b/plugins/SendScreenshotPlus/src/UAboutForm.cpp @@ -93,8 +93,8 @@ LRESULT TfrmAbout::wmInitdialog(WPARAM wParam, LPARAM lParam) { //License { TCHAR* pszText = NULL; - mir_tcsadd(pszText, _T(__COPYRIGHT)); - mir_tcsadd(pszText, _T("\r\n\r\n")); + mir_tstradd(pszText, _T(__COPYRIGHT)); + mir_tstradd(pszText, _T("\r\n\r\n")); HRSRC hRes = FindResource(g_hSendSS,MAKEINTRESOURCE(IDR_LICENSE),_T("TEXT")); DWORD size = SizeofResource(g_hSendSS,hRes); @@ -103,7 +103,7 @@ LRESULT TfrmAbout::wmInitdialog(WPARAM wParam, LPARAM lParam) { data[size] = '\0'; TCHAR* pszCopyright = mir_a2t(data); mir_free(data); - mir_tcsadd(pszText, pszCopyright); + mir_tstradd(pszText, pszCopyright); mir_free(pszCopyright); SetDlgItemText(m_hWnd,IDC_LICENSE, pszText); mir_free(pszText); |