(svn r16677) -Codechange: Dimension width and height are unsigned.
This commit is contained in:
@@ -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 */
|
||||
|
Reference in New Issue
Block a user