| 158 | } |
| 159 | |
| 160 | pub trait ProgramButtonExt { |
| 161 | fn set_program_id(&self, value: &str); |
| 162 | fn program_id(&self) -> glib::GString; |
| 163 | |
| 164 | fn set_program_name(&self, value: &str); |
| 165 | fn program_name(&self) -> glib::GString; |
| 166 | |
| 167 | fn set_modified(&self, modified: bool); |
| 168 | fn modified(&self) -> bool; |
| 169 | } |
| 170 | |
| 171 | impl ProgramButtonExt for ProgramButton { |
| 172 | fn set_program_id(&self, value: &str) { |
nothing calls this directly
no outgoing calls
no test coverage detected