#endif
#include "wx/wx.h"
-#include "wx/xml/xml.h"
+#include "wx/xrc/xml.h"
#include "wx/tokenzr.h"
#include "wx/wx.h"
#include "wx/dialog.h"
wxString txt = m_TextCtrl->GetValue();
long unsigned tmp;
- if (txt.Length() == 7 && txt[0] == _T('#') &&
+ if (txt.Length() == 7 && txt[0u] == _T('#') &&
wxSscanf(txt.c_str(), _T("#%lX"), &tmp) == 1)
clr = wxColour((tmp & 0xFF0000) >> 16,
(tmp & 0x00FF00) >> 8,
dlg.SetSizer(sz);
dlg.SetAutoLayout(TRUE);
+ dlg.Layout();
for (i = 0; i < arr.GetCount(); i++)
lbox->Append(arr[i]);