| 58 | |
| 59 | |
| 60 | bool GetPreferenceCommand::Apply(const CommandContext & context) |
| 61 | { |
| 62 | wxString prefValue; |
| 63 | if (!gPrefs->Read(mName, &prefValue)) |
| 64 | return false; |
| 65 | |
| 66 | context.Status(prefValue); |
| 67 | return true; |
| 68 | } |
| 69 | |
| 70 | const ComponentInterfaceSymbol SetPreferenceCommand::Symbol |
| 71 | { XO("Set Preference") }; |
nothing calls this directly
no test coverage detected