Subject: | lib/PPI/Tester.pm:87 needs | wxTB_TEXT | wxTB_NOICONS |
You need
$self->CreateToolBar( wxNO_BORDER | wxTB_HORIZONTAL | wxTB_TEXT | wxTB_NOICONS );
instead of
$self->CreateToolBar( wxNO_BORDER | wxTB_HORIZONTAL );
because
wxTB_TEXT Show the text in the toolbar buttons; by default only icons are shown.
wxTB_NOICONS Specifies no icons in the toolbar buttons; by default they are shown.
and users don't like mysterious little unlabeled boxes :D