Fix wxWindow::GetThemeEnabled() documentation

The method description was for some reason the
same as for ClearBackground().

Closes https://github.com/wxWidgets/wxWidgets/pull/1745
This commit is contained in:
PB
2020-02-26 21:44:23 +01:00
committed by Vadim Zeitlin
parent 109fd955a9
commit e22ab23216

View File

@@ -2406,10 +2406,15 @@ public:
Dialogs, notebook pages and the status bar have this flag set to @true
by default so that the default look and feel is simulated best.
@see GetThemeEnabled()
*/
virtual void SetThemeEnabled(bool enable);
/**
Returns @true if the window uses the system theme for drawing its background.
@see SetThemeEnabled()
*/
virtual bool GetThemeEnabled() const;