diff --git a/reactos/CREDITS b/reactos/CREDITS index e967d823ad6..51567871763 100644 --- a/reactos/CREDITS +++ b/reactos/CREDITS @@ -58,6 +58,7 @@ Paolo Pantaleo Peter Ward Pierre Schweitzer Phillip Susi +Rafal Harabien Rex Jolliff Richard Campbell Robert Bergkvist diff --git a/reactos/dll/win32/shell32/authors.c b/reactos/dll/win32/shell32/authors.c index 1f59bcd06a7..3101d764863 100644 --- a/reactos/dll/win32/shell32/authors.c +++ b/reactos/dll/win32/shell32/authors.c @@ -1 +1,3 @@ -const char * const SHELL_Authors[] = { "Copyright 1993-2011 WINE team", "Copyright 1998-2011 ReactOS Team", 0 }; +#include + +const char * const SHELL_Authors[] = { "Copyright 1993-" COPYRIGHT_YEAR " WINE team", "Copyright 1998-" COPYRIGHT_YEAR " ReactOS Team", 0 }; diff --git a/reactos/subsystems/win32/win32k/ntuser/winpos.c b/reactos/subsystems/win32/win32k/ntuser/winpos.c index be51ce033cc..eff6d368886 100644 --- a/reactos/subsystems/win32/win32k/ntuser/winpos.c +++ b/reactos/subsystems/win32/win32k/ntuser/winpos.c @@ -1037,8 +1037,7 @@ co_WinPosSetWindowPos( SWP_HIDEWINDOW | SWP_FRAMECHANGED)) != (SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER)) { - VisBefore = VIS_ComputeVisibleRegion(Window, FALSE, - FALSE, //(Window->style & WS_CLIPCHILDREN) ? TRUE : FALSE, + VisBefore = VIS_ComputeVisibleRegion(Window, FALSE, FALSE, (Window->style & WS_CLIPSIBLINGS) ? TRUE : FALSE); VisRgn = NULL; @@ -1129,8 +1128,7 @@ co_WinPosSetWindowPos( if (!(WinPos.flags & SWP_NOREDRAW)) { /* Determine the new visible region */ - VisAfter = VIS_ComputeVisibleRegion(Window, FALSE, - FALSE,//(Window->style & WS_CLIPCHILDREN) ? TRUE : FALSE, + VisAfter = VIS_ComputeVisibleRegion(Window, FALSE, FALSE, (Window->style & WS_CLIPSIBLINGS) ? TRUE : FALSE); VisRgn = NULL;