From 4c814798c7bc7f6a0f92c21b027b26290622aa2f Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 19 Jun 2015 19:35:42 +0000 Subject: SIZEOF replaced with more secure analog - _countof git-svn-id: http://svn.miranda-ng.org/main/trunk@14270 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/SpellChecker/src/ardialog.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/SpellChecker/src/ardialog.cpp') diff --git a/plugins/SpellChecker/src/ardialog.cpp b/plugins/SpellChecker/src/ardialog.cpp index 72fc6548c0..61aa390af8 100644 --- a/plugins/SpellChecker/src/ardialog.cpp +++ b/plugins/SpellChecker/src/ardialog.cpp @@ -97,7 +97,7 @@ static LRESULT CALLBACK OnlyCharsEditProc(HWND hwnd, UINT msg, WPARAM wParam, LP case EM_PASTESPECIAL: case WM_PASTE: TCHAR text[256]; - GetWindowText(hwnd, text, SIZEOF(text)); + GetWindowText(hwnd, text, _countof(text)); scoped_free dest = data->dict->autoReplace->filterText(text); SetWindowText(hwnd, dest); @@ -217,14 +217,14 @@ static INT_PTR CALLBACK AddReplacementDlgProc(HWND hwndDlg, UINT msg, WPARAM wPa TCHAR find[256]; if (data->findReadOnly) - mir_tstrncpy(find, data->find.c_str(), SIZEOF(find)); + mir_tstrncpy(find, data->find.c_str(), _countof(find)); else { - GetDlgItemText(hwndDlg, IDC_OLD, find, SIZEOF(find)); + GetDlgItemText(hwndDlg, IDC_OLD, find, _countof(find)); lstrtrim(find); } TCHAR replace[256]; - GetDlgItemText(hwndDlg, IDC_NEW, replace, SIZEOF(replace)); + GetDlgItemText(hwndDlg, IDC_NEW, replace, _countof(replace)); lstrtrim(replace); if (!data->findReadOnly && find[0] == 0) -- cgit v1.2.3