From 7da7d85977473ecaf748160dd3ad70ffdf3928b0 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 20 Jan 2017 14:31:47 +0100 Subject: [PATCH] Fix typo in wxRect::{x,y} documentation Use "top-left" instead of "top-level". Closes #17778. --- interface/wx/gdicmn.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/wx/gdicmn.h b/interface/wx/gdicmn.h index 5ade936862..5d18c2aa7a 100644 --- a/interface/wx/gdicmn.h +++ b/interface/wx/gdicmn.h @@ -609,12 +609,12 @@ public: int width; /** - x coordinate of the top-level corner of the rectangle. + x coordinate of the top-left corner of the rectangle. */ int x; /** - y coordinate of the top-level corner of the rectangle. + y coordinate of the top-left corner of the rectangle. */ int y; };