diff --git a/reactos/base/shell/explorer/doc/TODO.txt b/reactos/base/shell/explorer/doc/TODO.txt index 65785cf781b..e351cc1aefc 100644 --- a/reactos/base/shell/explorer/doc/TODO.txt +++ b/reactos/base/shell/explorer/doc/TODO.txt @@ -1,3 +1,15 @@ +I noticed two things: + +1) The painting isn't done quite properly in the top, right part (the +empty menu/toolbar area part) of the explorer when in SDI mode. + +2) When you switch back and forth from SDI to MDI, the toolbar +settings (i.e., which ones to show) are not conserved. + +I found these issues while running your explorer from Windows XP SP2's explorer. + + +- update problem in folders opened from the desktop in SDI mode - Combobox to switch the second input field between "Filter" and "Command" - rewrite autostart code and include all possible autostart locations - read "DESCRIPT.ION" files to display file descriptions diff --git a/reactos/base/shell/explorer/shell/mainframe.cpp b/reactos/base/shell/explorer/shell/mainframe.cpp index 9c12d59ac1e..9019de568cc 100644 --- a/reactos/base/shell/explorer/shell/mainframe.cpp +++ b/reactos/base/shell/explorer/shell/mainframe.cpp @@ -154,8 +154,8 @@ MainFrameBase::MainFrameBase(HWND hwnd) { HDC hDC = GetDC(NULL); #ifndef _NO_REBAR - //static WCHAR Title1[] = TEXT("Toolbar"); - static WCHAR Title2[] = TEXT("Address :"); + //static TCHAR Title1[] = TEXT("Toolbar"); + static TCHAR Title2[] = TEXT("Address :"); #endif if (hDC)