From: Kevin Wasserman Date: Sun, 12 Aug 2012 18:35:06 +0000 (-0400) Subject: Fix kfw message box titles X-Git-Tag: kfw-4.0-final~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f9150583e5bc573ce9c72d5327dfc844749ef38;p=thirdparty%2Fkrb5.git Fix kfw message box titles "MIT Kerberos", not "Leash32" Signed-off-by: Kevin Wasserman (cherry picked from commit 12147e84b98422aec0f34abf6be254d11fe8729a) ticket: 7333 status: resolved --- diff --git a/src/windows/leash/Leash.cpp b/src/windows/leash/Leash.cpp index 25a17de5df..6153499f96 100644 --- a/src/windows/leash/Leash.cpp +++ b/src/windows/leash/Leash.cpp @@ -386,7 +386,7 @@ BOOL CLeashApp::InitInstance() // Registry key under which our settings are stored. if (m_pszAppName) free((void*)m_pszAppName); - m_pszAppName = _tcsdup("Leash32"); + m_pszAppName = _tcsdup("MIT Kerberos"); SetRegistryKey(_T("MIT")); LoadStdProfileSettings(); // Load standard INI file options (including MRU) diff --git a/src/windows/leash/MainFrm.cpp b/src/windows/leash/MainFrm.cpp index 1e22283197..aa17000068 100644 --- a/src/windows/leash/MainFrm.cpp +++ b/src/windows/leash/MainFrm.cpp @@ -199,7 +199,7 @@ BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs) cs.dwExStyle |= WS_EX_APPWINDOW; // cs.dwExStyle |= WS_EX_OVERLAPPEDWINDOW ; cs.lpszClass = _T("LEASH.0WNDCLASS"); - cs.lpszName = _T("Leash32"); + cs.lpszName = _T("MIT Kerberos"); CString strText = AfxGetApp()->GetProfileString(CLeashFrame::s_profileHeading, CLeashFrame::s_profileRect);