| 520 | } |
| 521 | |
| 522 | void ScreenLabel::notesWindowStateChanges(int state) |
| 523 | { |
| 524 | if (state == Qt::Checked) { |
| 525 | notes.show(); |
| 526 | notes.setGeometry(notesGeometry); |
| 527 | } else { |
| 528 | notesGeometry = notes.geometry(); |
| 529 | notes.hide(); |
| 530 | } |
| 531 | } |
| 532 | |
| 533 | void ScreenLabel::notesModified(bool) |
| 534 | { |
nothing calls this directly
no outgoing calls
no test coverage detected