Document that Refresh() always erases background in non-MSW ports

The distinction between redrawing the background and the rest of the
window only exists in MSW and we can't refresh the window without
refreshing its background in the other ports, but we can at least
document this.

Closes #19234.
This commit is contained in:
Vadim Zeitlin
2021-07-28 01:25:51 +02:00
parent f4eae4df2a
commit b7c2918bf1

View File

@@ -2202,7 +2202,8 @@ public:
should use Update() instead.
@param eraseBackground
If @true, the background will be erased.
If @true, the background will be erased too. Note that in non-MSW
ports background is always erased.
@param rect
If non-@NULL, only the given rectangle will be treated as damaged.