applied patch 433352 (fix for wxTextCtrl::SetForegroundColor())

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10586 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-06-15 16:37:14 +00:00
parent 840bb34200
commit 1c7e7d5b1e
4 changed files with 0 additions and 18 deletions

View File

@@ -131,7 +131,6 @@ public:
void OnUpdateRedo(wxUpdateUIEvent& event);
bool SetFont( const wxFont &font );
bool SetForegroundColour(const wxColour &colour);
bool SetBackgroundColour(const wxColour &colour);
GtkWidget* GetConnectWidget();

View File

@@ -131,7 +131,6 @@ public:
void OnUpdateRedo(wxUpdateUIEvent& event);
bool SetFont( const wxFont &font );
bool SetForegroundColour(const wxColour &colour);
bool SetBackgroundColour(const wxColour &colour);
GtkWidget* GetConnectWidget();

View File

@@ -1072,14 +1072,6 @@ void wxTextCtrl::UpdateFontIfNeeded()
ChangeFontGlobally();
}
bool wxTextCtrl::SetForegroundColour( const wxColour &WXUNUSED(colour) )
{
wxCHECK_MSG( m_text != NULL, FALSE, wxT("invalid text ctrl") );
// doesn't work
return FALSE;
}
bool wxTextCtrl::SetBackgroundColour( const wxColour &colour )
{
wxCHECK_MSG( m_text != NULL, FALSE, wxT("invalid text ctrl") );

View File

@@ -1072,14 +1072,6 @@ void wxTextCtrl::UpdateFontIfNeeded()
ChangeFontGlobally();
}
bool wxTextCtrl::SetForegroundColour( const wxColour &WXUNUSED(colour) )
{
wxCHECK_MSG( m_text != NULL, FALSE, wxT("invalid text ctrl") );
// doesn't work
return FALSE;
}
bool wxTextCtrl::SetBackgroundColour( const wxColour &colour )
{
wxCHECK_MSG( m_text != NULL, FALSE, wxT("invalid text ctrl") );