| 191 | }; |
| 192 | |
| 193 | static wxToggleButton *MakeButton(wxWindow *pParent) |
| 194 | { |
| 195 | auto button = safenew wxBitmapToggleButton{ |
| 196 | pParent, ID_BRUSH_BUTTON, theTheme.Bitmap(bmpSpectralBrush) }; |
| 197 | // Name isn't shown but may be pronounced by a screen reader |
| 198 | button->SetName(XO("Brush Tool").Translation()); |
| 199 | return button; |
| 200 | } |
| 201 | |
| 202 | void SpectralDataDialog::Populate(ShuttleGui & S) |
| 203 | { |
no test coverage detected