Author: martinf
Date: Fri Jan 8 14:19:48 2010
New Revision: 44996
URL:
http://svn.reactos.org/svn/reactos?rev=44996&view=rev
Log:
fix TCHAR array initialization
Modified:
trunk/reactos/base/shell/explorer/ (props changed)
trunk/reactos/base/shell/explorer/doc/TODO.txt
trunk/reactos/base/shell/explorer/shell/mainframe.cpp
Propchange: trunk/reactos/base/shell/explorer/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Fri Jan 8 14:19:48 2010
@@ -5,3 +5,14 @@
*.ncb
*.suo
*.sln
+Debug
+doxy-doc
+Release
+UDebug
+URelease
+Win32
+*.chm
+*.dll
+*.aps
+*.gch
+*.exe
Modified: trunk/reactos/base/shell/explorer/doc/TODO.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer/doc/TO…
==============================================================================
--- trunk/reactos/base/shell/explorer/doc/TODO.txt [iso-8859-1] (original)
+++ trunk/reactos/base/shell/explorer/doc/TODO.txt [iso-8859-1] Fri Jan 8 14:19:48 2010
@@ -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
Modified: trunk/reactos/base/shell/explorer/shell/mainframe.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer/shell/…
==============================================================================
--- trunk/reactos/base/shell/explorer/shell/mainframe.cpp [iso-8859-1] (original)
+++ trunk/reactos/base/shell/explorer/shell/mainframe.cpp [iso-8859-1] Fri Jan 8 14:19:48
2010
@@ -154,8 +154,8 @@
{
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)