Author: dquintana
Date: Thu Mar 13 12:36:48 2014
New Revision: 62488
URL: http://svn.reactos.org/svn/reactos?rev=62488&view=rev
Log:
[SHELL32]
* Use the correct icon for the "My Computer" item. Patch by Robert Naumann.
CORE-7979 #resolve #comment Applied to shell-experiments branch. Thanks.
Modified:
branches/shell-experiments/dll/win32/shell32/res/rgs/mycomputer.rgs
Modified: branches/shell-experiments/dll/win32/shell32/res/rgs/mycomputer.rgs
URL: http://svn.reactos.org/svn/reactos/branches/shell-experiments/dll/win32/she…
==============================================================================
--- branches/shell-experiments/dll/win32/shell32/res/rgs/mycomputer.rgs [iso-8859-1] (original)
+++ branches/shell-experiments/dll/win32/shell32/res/rgs/mycomputer.rgs [iso-8859-1] Thu Mar 13 12:36:48 2014
@@ -7,7 +7,7 @@
val 'InfoTip' = e '@%%SystemRoot%%\system32\SHELL32.dll,-22913'
val 'IntroText' = e '@%%SystemRoot%%\system32\SHELL32.dll,-31751'
val 'LocalizedString' = e '@%%SystemRoot%%\system32\SHELL32.dll,-9216'
- DefaultIcon = e '%%SystemRoot%%\Explorer.exe,0'
+ DefaultIcon = e '%%SystemRoot%%\system32\SHELL32.dll,-16'
InprocServer32 = s '%MODULE%'
{
val ThreadingModel = s 'Apartment'
Author: jimtabor
Date: Thu Mar 13 01:36:31 2014
New Revision: 62486
URL: http://svn.reactos.org/svn/reactos?rev=62486&view=rev
Log:
[User32]
- Patch by Henri Verbeet : Fix TEXT_WordBreak() when no characters fit.
- Sync port from wine.
Modified:
trunk/reactos/win32ss/user/user32/windows/font.c
Modified: trunk/reactos/win32ss/user/user32/windows/font.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/user32/window…
==============================================================================
--- trunk/reactos/win32ss/user/user32/windows/font.c [iso-8859-1] (original)
+++ trunk/reactos/win32ss/user/user32/windows/font.c [iso-8859-1] Thu Mar 13 01:36:31 2014
@@ -605,7 +605,7 @@
p = str + chars_fit; /* The character that doesn't fit */
word_fits = TRUE;
if (!chars_fit)
- ; /* we pretend that it fits anyway */
+ word_fits = FALSE;
else if (*p == SPACE) /* chars_fit < *len_str so this is valid */
p--; /* the word just fitted */
else
@@ -615,7 +615,7 @@
;
word_fits = (p != str || *p == SPACE || IsCJKT(p[1]));
}
- /* If there was one or the first character didn't fit then */
+ /* If there was one. */
if (word_fits)
{
int next_is_space;