From 1c5a1d20a1d780c9d79f4905e2946277b6e17e9b Mon Sep 17 00:00:00 2001 From: Gabriel Ilardi Date: Fri, 11 Jun 2010 09:13:49 +0000 Subject: [PATCH] [SHELL32] - Correctly show accessed and modified times in file properties dialog (they were exchanged). svn path=/trunk/; revision=47752 --- reactos/dll/win32/shell32/fprop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/dll/win32/shell32/fprop.c b/reactos/dll/win32/shell32/fprop.c index 4d9345c469b..3e324499808 100644 --- a/reactos/dll/win32/shell32/fprop.c +++ b/reactos/dll/win32/shell32/fprop.c @@ -327,13 +327,13 @@ SH_FileGeneralSetFileSizeTime(HWND hwndDlg, WCHAR *lpfilename, PULARGE_INTEGER l if (SHFileGeneralGetFileTimeString(&accessed_time, resultstr)) { - hDlgCtrl = GetDlgItem(hwndDlg, 14017); + hDlgCtrl = GetDlgItem(hwndDlg, 14019); SendMessageW(hDlgCtrl, WM_SETTEXT, (WPARAM)NULL, (LPARAM)resultstr); } if (SHFileGeneralGetFileTimeString(&write_time, resultstr)) { - hDlgCtrl = GetDlgItem(hwndDlg, 14019); + hDlgCtrl = GetDlgItem(hwndDlg, 14017); SendMessageW(hDlgCtrl, WM_SETTEXT, (WPARAM)NULL, (LPARAM)resultstr); }