| 42 | { return VisitSettings<true>(S); } |
| 43 | |
| 44 | void MessageCommand::PopulateOrExchange(ShuttleGui & S) |
| 45 | { |
| 46 | S.AddSpace(0, 5); |
| 47 | |
| 48 | S.StartMultiColumn(2, wxALIGN_CENTER); |
| 49 | { |
| 50 | S.TieTextBox(XXO("Text:"),mMessage,60); |
| 51 | } |
| 52 | S.EndMultiColumn(); |
| 53 | } |
| 54 | |
| 55 | bool MessageCommand::Apply(const CommandContext & context){ |
| 56 | context.Status( mMessage ); |
nothing calls this directly
no test coverage detected