diff options
Diffstat (limited to 'src/modules/protocols')
| -rw-r--r-- | src/modules/protocols/protoopts.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/modules/protocols/protoopts.cpp b/src/modules/protocols/protoopts.cpp index c276a62ca1..35b59d11bb 100644 --- a/src/modules/protocols/protoopts.cpp +++ b/src/modules/protocols/protoopts.cpp @@ -785,7 +785,7 @@ INT_PTR CALLBACK AccMgrDlgProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM  						DWORD dwStatus = CallProtoServiceInt(NULL, pa->szModuleName, PS_GETSTATUS, 0, 0);
  						if (dwStatus >= ID_STATUS_ONLINE) {
  							TCHAR buf[200];
 -							mir_sntprintf(buf, SIZEOF(buf), TranslateT("Account %s is being disabled"), pa->tszAccountName);
 +							mir_sntprintf(buf, TranslateT("Account %s is being disabled"), pa->tszAccountName);
  							if (IDNO == ::MessageBox(hwndDlg,
  								TranslateT("Account is online. Disable account?"),
  								buf, MB_ICONWARNING | MB_DEFBUTTON2 | MB_YESNO)) {
 @@ -845,7 +845,7 @@ INT_PTR CALLBACK AccMgrDlgProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM  			if (idx != -1) {
  				pa = (PROTOACCOUNT*)ListBox_GetItemData(hwndList, idx);
  				TCHAR buf[200];
 -				mir_sntprintf(buf, SIZEOF(buf), TranslateT("Account %s is being deleted"), pa->tszAccountName);
 +				mir_sntprintf(buf, TranslateT("Account %s is being deleted"), pa->tszAccountName);
  				if (pa->bOldProto) {
  					MessageBox(hwndDlg, TranslateT("You need to disable plugin to delete this account"), buf, MB_ICONERROR | MB_OK);
  					break;
 | 
