Author: cwittich
Date: Sun Oct 5 11:02:11 2014
New Revision: 64540
URL: http://svn.reactos.org/svn/reactos?rev=64540&view=rev
Log:
[uxtheme]
fix a typo
Modified:
trunk/reactos/dll/win32/uxtheme/uxthemep.h
Modified: trunk/reactos/dll/win32/uxtheme/uxthemep.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/uxtheme/uxthemep…
==============================================================================
--- trunk/reactos/dll/win32/uxtheme/uxthemep.h [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/uxtheme/uxthemep.h [iso-8859-1] Sun Oct 5 11:02:11 2014
@@ -156,7 +156,7 @@
} CAPTIONBUTTON;
/*
-The following values specify all possible vutton states
+The following values specify all possible button states
Note that not all of them are documented but it is easy to
find them by opening a theme file
*/
Author: jgardou
Date: Sun Oct 5 09:57:02 2014
New Revision: 64537
URL: http://svn.reactos.org/svn/reactos?rev=64537&view=rev
Log:
[NTOS/MM]
- Do not assert in case of stack overflow, just let the page fault handler raise STATUS_STACK_OVERFLOW
Modified:
trunk/reactos/ntoskrnl/mm/ARM3/pagfault.c
Modified: trunk/reactos/ntoskrnl/mm/ARM3/pagfault.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/ARM3/pagfault.…
==============================================================================
--- trunk/reactos/ntoskrnl/mm/ARM3/pagfault.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/ARM3/pagfault.c [iso-8859-1] Sun Oct 5 09:57:02 2014
@@ -82,7 +82,6 @@
{
/* We don't -- Windows would try to make this guard page valid now */
DPRINT1("Close to our death...\n");
- ASSERT(FALSE);
return STATUS_STACK_OVERFLOW;
}
Author: ekohl
Date: Sun Oct 5 08:55:55 2014
New Revision: 64535
URL: http://svn.reactos.org/svn/reactos?rev=64535&view=rev
Log:
[SETUPAPI]
Add overlay icons to the class image list.
Modified:
trunk/reactos/dll/win32/setupapi/devclass.c
Modified: trunk/reactos/dll/win32/setupapi/devclass.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/devclas…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/devclass.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/devclass.c [iso-8859-1] Sun Oct 5 08:55:55 2014
@@ -486,6 +486,7 @@
HICON hIcon;
DWORD size;
INT i, bpp;
+ UINT idx;
/* Get list of all class GUIDs in given computer */
ret = SetupDiBuildClassInfoListExW(
@@ -587,6 +588,19 @@
}
else
list->IconIndexes[i] = -1; /* Special value to indicate that the icon is unavailable */
+ }
+
+ /* Finally, add the overlay icons to the image list */
+ for (i = 0; i < 2; i++)
+ {
+ hIcon = LoadImage(hInstance, MAKEINTRESOURCE(500 + i), IMAGE_ICON, 16, 16, LR_DEFAULTCOLOR);
+ if (hIcon)
+ {
+ idx = ImageList_AddIcon(ClassImageListData->ImageList, hIcon);
+ if (idx != -1)
+ ImageList_SetOverlayImage(ClassImageListData->ImageList, idx, i);
+ DestroyIcon(hIcon);
+ }
}
ret = TRUE;