Changeset 857 for trunk/src/shell32/new/shell32_main.cpp
- Timestamp:
- Sep 7, 1999, 8:45:12 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shell32/new/shell32_main.cpp
r800 r857 640 640 info.szOtherStuff = szOtherStuff; 641 641 info.hIcon = hIcon; 642 if (!hIcon) info.hIcon = LoadIcon 16( 0, MAKEINTRESOURCE16(OIC_WINEICON));642 if (!hIcon) info.hIcon = LoadIconA( 0, (LPCSTR)OIC_WINEICON ); 643 643 return DialogBoxIndirectParamA( GetWindowLongA( hWnd, GWL_HINSTANCE ), 644 644 (DLGTEMPLATE*)dlgTemplate , hWnd, AboutDlgProc, (LPARAM)&info ); … … 666 666 info.szOtherStuff = HEAP_strdupWtoA( GetProcessHeap(), 0, szOtherStuff ); 667 667 info.hIcon = hIcon; 668 if (!hIcon) info.hIcon = LoadIcon 16( 0, MAKEINTRESOURCE16(OIC_WINEICON));668 if (!hIcon) info.hIcon = LoadIconA( 0, (LPCSTR)OIC_WINEICON ); 669 669 ret = DialogBoxIndirectParamA( GetWindowLongA( hWnd, GWL_HINSTANCE ), 670 670 (DLGTEMPLATE*)dlgTemplate, hWnd, AboutDlgProc, (LPARAM)&info );
Note:
See TracChangeset
for help on using the changeset viewer.