Bug 668663 - OFNHookProc callback in the file picker code should return a UINT_PTR. r=neil

This commit is contained in:
Makoto Kato 2011-07-01 18:22:10 +09:00
Родитель ec45f8f1c5
Коммит 3d0e422e74
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -99,8 +99,8 @@ int CALLBACK BrowseCallbackProc(HWND hwnd, UINT uMsg, LPARAM lParam, LPARAM lpDa
// Callback hook which will dynamically allocate a buffer large
// enough for the file picker dialog.
static unsigned int CALLBACK FilePickerHook(HWND hwnd, UINT msg,
WPARAM wParam, LPARAM lParam)
static UINT_PTR CALLBACK FilePickerHook(HWND hwnd, UINT msg,
WPARAM wParam, LPARAM lParam)
{
switch (msg) {
case WM_INITDIALOG: