added wxDCTextColourChanger ctor that allows using the class in the same way other wxDCFooChangers are used

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42454 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2006-10-26 15:30:43 +00:00
parent 3ecece7e04
commit 1b97b23d5f

View File

@ -870,6 +870,11 @@ class WXDLLEXPORT wxDCTextColourChanger
public:
wxDCTextColourChanger(wxDC& dc) : m_dc(dc), m_colFgOld() { }
wxDCTextColourChanger(wxDC& dc, const wxColour& col) : m_dc(dc)
{
Set(col);
}
~wxDCTextColourChanger()
{
if ( m_colFgOld.Ok() )