From 7ce66e3c433f18a4dbec0b18e3ce39863488dd94 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 23 Dec 2013 16:43:51 +0000 Subject: [PATCH] Use wxPENSTYLE_{SOLID,TRANSPARENT} instead of deprecated versions in the docs. Don't push people to use the deprecated wxSOLID and wxTRANSPARENT. Closes #15775. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75409 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/dc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/wx/dc.h b/interface/wx/dc.h index 9df4640a17..6d72221df4 100644 --- a/interface/wx/dc.h +++ b/interface/wx/dc.h @@ -929,7 +929,7 @@ public: //@{ /** - Returns the current background mode: @c wxSOLID or @c wxTRANSPARENT. + Returns the current background mode: @c wxPENSTYLE_SOLID or @c wxPENSTYLE_TRANSPARENT. @see SetBackgroundMode() */ @@ -969,7 +969,7 @@ public: const wxColour& GetTextForeground() const; /** - @a mode may be one of @c wxSOLID and @c wxTRANSPARENT. + @a mode may be one of @c wxPENSTYLE_SOLID and @c wxPENSTYLE_TRANSPARENT. This setting determines whether text will be drawn with a background colour or not.