// Author: Julian Smart
// Modified by:
// Created: 04/01/98
-// RCS-ID: $Id$
// Copyright: (c) Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
dc.SetBrush(*wxWHITE_BRUSH);
dc.DrawRectangle(0, 0, size.x, size.y);
- if ( font.Ok() )
+ if ( font.IsOk() )
{
dc.SetFont(font);
dc.SetTextForeground(GetForegroundColour());
int fontSize = 12;
bool fontUnderline = false;
- if (m_fontData.m_initialFont.Ok())
+ if (m_fontData.m_initialFont.IsOk())
{
fontFamily = m_fontData.m_initialFont.GetFamily();
fontWeight = m_fontData.m_initialFont.GetWeight();
if ( !m_colourChoice->GetStringSelection().empty() )
{
wxColour col = wxTheColourDatabase->Find(m_colourChoice->GetStringSelection());
- if (col.Ok())
+ if (col.IsOk())
{
m_fontData.m_fontColour = col;
}
}
// Update color here so that we can also use the color originally passed in
// (EnableEffects may be false)
- if (m_fontData.m_fontColour.Ok())
+ if (m_fontData.m_fontColour.IsOk())
m_previewer->SetForegroundColour(m_fontData.m_fontColour);
m_previewer->Refresh();