| 60 | } |
| 61 | |
| 62 | void KeyboardVisDlg::show_hide() |
| 63 | { |
| 64 | if(isHidden()) |
| 65 | { |
| 66 | timer->start(15); |
| 67 | show(); |
| 68 | } |
| 69 | else |
| 70 | { |
| 71 | hide(); |
| 72 | timer->stop(); |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | void KeyboardVisDlg::update() |
| 77 | { |
nothing calls this directly
no outgoing calls
no test coverage detected