From: Kevin Wasserman Date: Fri, 20 Jul 2012 15:07:48 +0000 (-0400) Subject: Change kfw destroy ticket confirmation message X-Git-Tag: krb5-1.11-alpha1~306 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=253b9a7f317d03c3392add07d3da2c4c4ecfc08f;p=thirdparty%2Fkrb5.git Change kfw destroy ticket confirmation message OKCANCEL -> YESNO Add MB_ICONEXCLAMATION Change text Signed-off-by: Kevin Wasserman ticket: 7239 (new) queue: kfw target_version: 1.10.4 tags: pullup --- diff --git a/src/windows/leash/LeashView.cpp b/src/windows/leash/LeashView.cpp index 1b67937c51..3c91e32862 100644 --- a/src/windows/leash/LeashView.cpp +++ b/src/windows/leash/LeashView.cpp @@ -752,8 +752,8 @@ VOID CLeashView::OnDestroyTicket() INT whatToDo; if (!CLeashApp::m_hAfsDLL) - whatToDo = AfxMessageBox("You are about to destroy your ticket(s)!", - MB_OKCANCEL, 0); + whatToDo = AfxMessageBox("Are you sure you want to destroy these tickets?", + MB_ICONEXCLAMATION|MB_YESNO, 0); else whatToDo = AfxMessageBox("You are about to destroy your ticket(s)/token(s)!", MB_OKCANCEL, 0);