@@ -30,10 +30,10 @@ static LRESULT CALLBACK AboutWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM
3030 L"(C) Intermountain Systems\n"
3131 L"Build date: %s" , ver , built );
3232 CreateWindowW (L"STATIC" , NULL , WS_CHILD | WS_VISIBLE | SS_BITMAP ,
33- 61 , 10 , 128 , 64 , hwnd , (HMENU )100 , g_hInst , NULL );
33+ 76 , 10 , 128 , 64 , hwnd , (HMENU )100 , g_hInst , NULL );
3434 SendDlgItemMessage (hwnd , 100 , STM_SETIMAGE , IMAGE_BITMAP , (LPARAM )g_hLogo );
3535 CreateWindowW (L"STATIC" , text , WS_CHILD | WS_VISIBLE | SS_CENTER ,
36- 5 , 80 , 240 , 50 , hwnd , NULL , g_hInst , NULL );
36+ 5 , 80 , 270 , 50 , hwnd , NULL , g_hInst , NULL );
3737 return 0 ;
3838 }
3939 case WM_COMMAND :
@@ -75,7 +75,7 @@ void DoAbout(void) {
7575 GetWindowRect (g_hwndMain , & rc );
7676 hwndAbout = CreateWindowW (L"SQLiteCEAbout" , L"About" ,
7777 WS_POPUP | WS_CAPTION | WS_SYSMENU ,
78- rc .left + 30 , rc .top + 30 , 250 , 160 ,
78+ rc .left + 30 , rc .top + 30 , 280 , 160 ,
7979 g_hwndMain , NULL , g_hInst , NULL );
8080 ShowWindow (hwndAbout , SW_SHOW );
8181}
0 commit comments