(svn r16677) -Codechange: Dimension width and height are unsigned.

This commit is contained in:
alberth
2009-06-27 20:53:45 +00:00
parent 812ad41f23
commit 9b070b5405
9 changed files with 29 additions and 29 deletions

View File

@@ -25,8 +25,8 @@ struct Point {
/** Dimensions (a width and height) of a rectangle in 2D */
struct Dimension {
int width;
int height;
uint width;
uint height;
};
/** Specification of a rectangle with absolute coordinates of all edges */