diff options
Diffstat (limited to 'src/modules/help/help.cpp')
-rw-r--r-- | src/modules/help/help.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/help/help.cpp b/src/modules/help/help.cpp index 33b37e86b0..a1984ca32e 100644 --- a/src/modules/help/help.cpp +++ b/src/modules/help/help.cpp @@ -34,7 +34,7 @@ static INT_PTR AboutCommand(WPARAM wParam, LPARAM) SetFocus(hAboutDlg);
return 0;
}
- hAboutDlg=CreateDialog(hMirandaInst, MAKEINTRESOURCE(IDD_ABOUT), (HWND)wParam, DlgProcAbout);
+ hAboutDlg=CreateDialog(hInst, MAKEINTRESOURCE(IDD_ABOUT), (HWND)wParam, DlgProcAbout);
return 0;
}
|