X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1e269f30d5438047905833f46b9fb24fcd5b7946..f239a20092359e3c914adb79bd39f3f5d2b2e06f:/src/generic/colrdlgg.cpp diff --git a/src/generic/colrdlgg.cpp b/src/generic/colrdlgg.cpp index e3e0da6489..3b5695ab7d 100644 --- a/src/generic/colrdlgg.cpp +++ b/src/generic/colrdlgg.cpp @@ -35,6 +35,7 @@ #include "wx/statline.h" #endif +#include "wx/colourdata.h" #include "wx/generic/colrdlgg.h" IMPLEMENT_DYNAMIC_CLASS(wxGenericColourDialog, wxDialog) @@ -58,7 +59,7 @@ END_EVENT_TABLE() // don't change the number of elements (48) in this array, the code below is // hardcoded to use it -static const wxChar *wxColourDialogNames[] = +static const wxChar *const wxColourDialogNames[] = { wxT("ORANGE"), wxT("GOLDENROD"), @@ -140,7 +141,7 @@ void wxGenericColourDialog::OnCloseWindow(wxCloseEvent& WXUNUSED(event)) bool wxGenericColourDialog::Create(wxWindow *parent, wxColourData *data) { - if ( !wxDialog::Create(GetParentForModalDialog(parent), wxID_ANY, + if ( !wxDialog::Create(GetParentForModalDialog(parent, 0), wxID_ANY, _("Choose colour"), wxPoint(0, 0), wxSize(900, 900)) ) return false; @@ -314,7 +315,7 @@ void wxGenericColourDialog::InitializeColours(void) for (i = 0; i < WXSIZEOF(wxColourDialogNames); i++) { wxColour col = wxTheColourDatabase->Find(wxColourDialogNames[i]); - if (col.Ok()) + if (col.IsOk()) m_standardColours[i].Set(col.Red(), col.Green(), col.Blue()); else m_standardColours[i].Set(0, 0, 0); @@ -323,14 +324,14 @@ void wxGenericColourDialog::InitializeColours(void) for (i = 0; i < WXSIZEOF(m_customColours); i++) { wxColour c = m_colourData.GetCustomColour(i); - if (c.Ok()) + if (c.IsOk()) m_customColours[i] = m_colourData.GetCustomColour(i); else m_customColours[i] = wxColour(255, 255, 255); } wxColour curr = m_colourData.GetColour(); - if ( curr.Ok() ) + if ( curr.IsOk() ) { bool m_initColourFound = false; @@ -380,7 +381,7 @@ void wxGenericColourDialog::PaintBasicColours(wxDC& dc) int y = (i*(m_smallRectangleSize.y+m_gridSpacing) + m_standardColoursRect.y); dc.SetPen(*wxBLACK_PEN); - wxBrush brush(m_standardColours[ptr], wxSOLID); + wxBrush brush(m_standardColours[ptr]); dc.SetBrush(brush); dc.DrawRectangle( x, y, m_smallRectangleSize.x, m_smallRectangleSize.y); @@ -403,7 +404,7 @@ void wxGenericColourDialog::PaintCustomColours(wxDC& dc) dc.SetPen(*wxBLACK_PEN); - wxBrush brush(m_customColours[ptr], wxSOLID); + wxBrush brush(m_customColours[ptr]); dc.SetBrush(brush); dc.DrawRectangle( x, y, m_smallRectangleSize.x, m_smallRectangleSize.y); @@ -461,7 +462,7 @@ void wxGenericColourDialog::PaintCustomColour(wxDC& dc) { dc.SetPen(*wxBLACK_PEN); - wxBrush *brush = new wxBrush(m_colourData.m_dataColour, wxSOLID); + wxBrush *brush = new wxBrush(m_colourData.m_dataColour); dc.SetBrush(*brush); dc.DrawRectangle( m_singleCustomColourRect.x, m_singleCustomColourRect.y,