From e22ab232165cc16698d0180bec35d8658ccac429 Mon Sep 17 00:00:00 2001 From: PB Date: Wed, 26 Feb 2020 21:44:23 +0100 Subject: [PATCH] Fix wxWindow::GetThemeEnabled() documentation The method description was for some reason the same as for ClearBackground(). Closes https://github.com/wxWidgets/wxWidgets/pull/1745 --- interface/wx/window.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/interface/wx/window.h b/interface/wx/window.h index 93f603c50a..eabeef5f7d 100644 --- a/interface/wx/window.h +++ b/interface/wx/window.h @@ -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;