Skip to content

Commit 24ac6a5

Browse files
committed
Minor tweaks to About dialog width to better fit new build number versioning
1 parent f460e2a commit 24ac6a5

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/sqlite-ce-edit/dialogs.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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
}

src/sqlite-ce-edit/globals.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ BOOL WINAPI GetSaveFileNameW(CE_OPENFILENAME*);
8282
** Version
8383
**============================================================================*/
8484

85-
#define SQLITECEDIT_VERSION L"0.7.0.13"
85+
#define SQLITECEDIT_VERSION L"0.7.0.15"
8686

8787
/*============================================================================
8888
** Menu IDs

0 commit comments

Comments
 (0)