return m_refData != palette.m_refData;
}
-bool wxPalette::Ok(void) const
+bool wxPalette::IsOk() const
{
return (m_refData != NULL);
}
+int wxPalette::GetColoursCount() const
+{
+ if (m_refData)
+ return M_PALETTEDATA->m_count;
+
+ return 0;
+}
+
bool wxPalette::Create(int n,
const unsigned char *red,
const unsigned char *green,