diff options
author | George Hazan <george.hazan@gmail.com> | 2024-10-01 18:01:53 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-10-01 18:01:53 +0300 |
commit | 0a45ee17d65e81de34fca97a5cea6956150081ec (patch) | |
tree | 12ede485f9aa27ad51b2480e540ae4751be49e58 | |
parent | ef23e540eddbbfbd8e79d2992cbbf2c956fc2e47 (diff) |
missing modifier
-rw-r--r-- | src/mir_app/src/help.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/src/help.cpp b/src/mir_app/src/help.cpp index 02e85523a3..d402d921fa 100644 --- a/src/mir_app/src/help.cpp +++ b/src/mir_app/src/help.cpp @@ -29,7 +29,7 @@ static class CAboutDlg *pAboutDialog; static CMStringA szCommitHash;
-static LRESULT HeaderWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
+static LRESULT CALLBACK HeaderWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
if (msg == WM_LBUTTONDOWN && !szCommitHash.IsEmpty())
Utils_OpenUrl("https://github.com/miranda-ng/miranda-ng/commit/" + szCommitHash);
|