Index: src/af/xap/win/xap_Win32Dlg_About.cpp =================================================================== RCS file: /cvsroot/abi/src/af/xap/win/xap_Win32Dlg_About.cpp,v retrieving revision 1.25 diff -u -3 -r1.25 xap_Win32Dlg_About.cpp --- src/af/xap/win/xap_Win32Dlg_About.cpp 28 Feb 2004 22:00:05 -0000 1.25 +++ src/af/xap/win/xap_Win32Dlg_About.cpp 24 Apr 2004 19:47:04 -0000 @@ -107,12 +107,12 @@ wndclassAbout.cbClsExtra = 0; wndclassAbout.cbWndExtra = 0; wndclassAbout.hInstance = pWin32App->getInstance(); - wndclassAbout.hIcon = pWin32App->getIcon(); + wndclassAbout.hIcon = NULL; wndclassAbout.hCursor = LoadCursor(NULL, IDC_ARROW); wndclassAbout.hbrBackground = GetSysColorBrush(COLOR_BTNFACE); wndclassAbout.lpszMenuName = NULL; wndclassAbout.lpszClassName = "AbiSource_About"; - wndclassAbout.hIconSm = pWin32App->getSmallIcon(); + wndclassAbout.hIconSm = NULL; if (!RegisterClassEx(&wndclassAbout)) { @@ -135,7 +135,7 @@ HWND hwndAbout = CreateWindow( wndclassAbout.lpszClassName, buf, - WS_OVERLAPPED | WS_VISIBLE | WS_SYSMENU, + WS_OVERLAPPED | WS_VISIBLE, (iScreenWidth - ABOUT_WIDTH) / 2, (iScreenHeight - ABOUT_HEIGHT) /2, ABOUT_WIDTH,