-
Thanks, already noticed. I happened to compile the lib on VS2008 ;-)
2009-11-13 13:53:43 UTC by nobody
-
void CResizableFrame::OnWindowPosChanging(WINDOWPOS FAR* lpwndpos)
{
if (lpwndpos->flags & (SWP_NOSIZE|SWP_NOMOVE) != (SWP_NOSIZE|SWP_NOMOVE))
...
}
warning C4554: '&' : check operator precedence for possible error; use parentheses to clarify precedence
should be
if ( (lpwndpos->flags & (SWP_NOSIZE|SWP_NOMOVE) ) != (SWP_NOSIZE|SWP_NOMOVE))
Andreas.
2009-11-13 11:41:45 UTC by nobody
-
ppescher committed patchset 23 of module ResizableProperties to the ResizableLib CVS repository, changing 3 files.
2009-10-29 10:00:09 UTC by ppescher
-
ppescher committed patchset 22 of module ResizableProperties to the ResizableLib CVS repository, changing 2 files.
2009-10-29 09:59:36 UTC by ppescher
-
ppescher committed patchset 12 of module ResizableFormViewSDI to the ResizableLib CVS repository, changing 2 files.
2009-10-29 09:58:49 UTC by ppescher
-
ppescher committed patchset 189 of module ResizableLib to the ResizableLib CVS repository, changing 1 files.
2009-10-29 09:57:59 UTC by ppescher
-
ppescher committed patchset 188 of module ResizableLib to the ResizableLib CVS repository, changing 1 files.
2009-10-29 09:57:41 UTC by ppescher
-
ppescher committed patchset 34 of module ResizableDialog to the ResizableLib CVS repository, changing 2 files.
2009-10-29 09:53:26 UTC by ppescher
-
ppescher committed patchset 19 of module ResizableFormViewMDI to the ResizableLib CVS repository, changing 11 files.
2009-10-29 09:52:31 UTC by ppescher
-
ppescher committed patchset 18 of module ResizableFormViewMDI to the ResizableLib CVS repository, changing 2 files.
2009-10-29 09:51:17 UTC by ppescher