i ++;
}
- delete widths;
+ delete[] widths;
}
// Centre a list of strings in the given box
// Make new lines into NULL strings at this point
int i = 0; int j = 0; int len = text.Length();
- wxChar word[200]; word[0] = 0;
+ wxChar word[400]; word[0] = 0;
bool end_word = false; bool new_line = false;
while (i < len)
{
wxString oldBuffer(buffer);
wxString s = node->GetData();
- if (s.IsEmpty())
+ if (s.empty())
{
// FORCE NEW LINE
if (buffer.Length() > 0)
hex.Mid(0,2).ToLong(&r, 16);
hex.Mid(2,2).ToLong(&g, 16);
hex.Mid(4,2).ToLong(&b, 16);
- return wxColour(r, g, b);
+ return wxColour((unsigned char)r,
+ (unsigned char)g,
+ (unsigned char)b);
}
else
- return wxColour(0,0,0);
+ return *wxBLACK;
}
// RGB to 3-digit hex