Remove redundant origin value

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1393 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2008-12-02 20:57:45 +00:00
parent c13aa8eb4d
commit 9414c64d0d
17 changed files with 26 additions and 30 deletions
+1 -1
View File
@@ -94,7 +94,7 @@ void nxbe_setsize(FAR struct nxbe_window_s *wnd,
nxgl_rectcopy(&bounds, &wnd->bounds);
/* Add the window origin to supplied size get the new window bounding box */
/* Add the window origin to the supplied size get the new window bounding box */
wnd->bounds.pt2.x = wnd->bounds.pt1.x + size->w - 1;
wnd->bounds.pt2.y = wnd->bounds.pt1.y + size->h - 1;