Module: wine Branch: master Commit: 468f709cbe19df6919c22d7d480572008cdc15c1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=468f709cbe19df6919c22d7d48...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Wed Jul 9 20:36:41 2008 +0100
comdlg32: Remove unneeded address-of operator from array name.
---
dlls/comdlg32/filedlg.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/comdlg32/filedlg.c b/dlls/comdlg32/filedlg.c index 618fc22..dd47528 100644 --- a/dlls/comdlg32/filedlg.c +++ b/dlls/comdlg32/filedlg.c @@ -1164,7 +1164,7 @@ static LRESULT FILEDLG95_InitControls(HWND hwnd) SendMessageW(fodInfos->DlgInfos.hwndTB, TB_ADDBITMAP, 12, (LPARAM) &tba[0]); SendMessageW(fodInfos->DlgInfos.hwndTB, TB_ADDBITMAP, 1, (LPARAM) &tba[1]);
- SendMessageW(fodInfos->DlgInfos.hwndTB, TB_ADDBUTTONSW, 9, (LPARAM) &tbb); + SendMessageW(fodInfos->DlgInfos.hwndTB, TB_ADDBUTTONSW, 9, (LPARAM) tbb); SendMessageW(fodInfos->DlgInfos.hwndTB, TB_AUTOSIZE, 0, 0);
/* Set the window text with the text specified in the OPENFILENAME structure */