Fix typo in wxRect::{x,y} documentation

Use "top-left" instead of "top-level".

Closes #17778.
This commit is contained in:
Vadim Zeitlin
2017-01-20 14:31:47 +01:00
parent cfc733d16c
commit 7da7d85977

View File

@@ -609,12 +609,12 @@ public:
int width; int width;
/** /**
x coordinate of the top-level corner of the rectangle. x coordinate of the top-left corner of the rectangle.
*/ */
int x; int x;
/** /**
y coordinate of the top-level corner of the rectangle. y coordinate of the top-left corner of the rectangle.
*/ */
int y; int y;
}; };