X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/846f4568e5599a964ee04b186a263cd07b959d2f..ca77701441e39245dcbfce903049e76f166979e5:/include/wx/html/htmlcell.h?ds=inline diff --git a/include/wx/html/htmlcell.h b/include/wx/html/htmlcell.h index a474030726..328aefce8a 100644 --- a/include/wx/html/htmlcell.h +++ b/include/wx/html/htmlcell.h @@ -91,10 +91,13 @@ public: const wxColour& GetFgColour() const { return m_fgColour; } void SetBgColour(const wxColour& c) { m_bgColour = c; } const wxColour& GetBgColour() const { return m_bgColour; } + void SetBgMode(int m) { m_bgMode = m; } + int GetBgMode() const { return m_bgMode; } private: wxHtmlSelectionState m_selState; wxColour m_fgColour, m_bgColour; + int m_bgMode; };