| 232 | } |
| 233 | |
| 234 | wxString Text(double value) const |
| 235 | { |
| 236 | if (formatAsInt) |
| 237 | return wxString::Format(format, (int)(value)); |
| 238 | else |
| 239 | return wxString::Format(format, value); |
| 240 | } |
| 241 | |
| 242 | void CreateControls(int id, ShuttleGui &S) const |
| 243 | { |
no outgoing calls
no test coverage detected