Fix double words and article mismatches in docs.

This commit is contained in:
Blake Madden
2021-03-10 14:28:20 -05:00
parent 18edbe93f2
commit 28d705424b
34 changed files with 46 additions and 46 deletions

View File

@@ -1918,10 +1918,10 @@ public:
Converts to screen coordinates from coordinates relative to this window.
@param x
A pointer to a integer value for the x coordinate. Pass the client
A pointer to an integer value for the x coordinate. Pass the client
coordinate in, and a screen coordinate will be passed out.
@param y
A pointer to a integer value for the y coordinate. Pass the client
A pointer to an integer value for the y coordinate. Pass the client
coordinate in, and a screen coordinate will be passed out.
@beginWxPerlOnly
@@ -2174,7 +2174,7 @@ public:
/**
Returns the region specifying which parts of the window have been damaged.
Should only be called within an wxPaintEvent handler.
Should only be called within a wxPaintEvent handler.
@see wxRegion, wxRegionIterator
*/
@@ -2246,7 +2246,7 @@ public:
The colour to be used as the background colour; pass
wxNullColour to reset to the default colour.
Note that you may want to use wxSystemSettings::GetColour() to retrieve
a suitable colour to use rather than setting an hard-coded one.
a suitable colour to use rather than setting a hard-coded one.
@remarks The background colour is usually painted by the default
wxEraseEvent event handler function under Windows and
@@ -2873,7 +2873,7 @@ public:
/**
Returns @true if the given point or rectangle area has been exposed since the
last repaint. Call this in an paint event handler to optimize redrawing by
last repaint. Call this in a paint event handler to optimize redrawing by
only redrawing those areas, which have been exposed.
*/
bool IsExposed(int x, int y) const;
@@ -3364,7 +3364,7 @@ public:
of a window, which may or may not be implemented by destroying
the window. The default implementation of wxDialog::OnCloseWindow
does not necessarily delete the dialog, since it will simply
simulate an wxID_CANCEL event which is handled by the appropriate
simulate a wxID_CANCEL event which is handled by the appropriate
button event handler and may do anything at all.
To guarantee that the window will be destroyed, call
wxWindow::Destroy instead