| 29 | namespace tev { |
| 30 | |
| 31 | ErrorDialog::ErrorDialog( |
| 32 | nanogui::Widget* parent, |
| 33 | Type type, |
| 34 | string_view title, |
| 35 | string_view message, |
| 36 | string_view button_text, |
| 37 | string_view alt_button_text, |
| 38 | bool alt_button, |
| 39 | int max_width, |
| 40 | int max_height |
| 41 | ) : |
| 42 | MessageDialog(parent, type, title, message, button_text, alt_button_text, alt_button, max_width, max_height) {} |
| 43 | |
| 44 | bool ErrorDialog::keyboard_event(int key, int scancode, int action, int modifiers) { |
| 45 | if (MessageDialog::keyboard_event(key, scancode, action, modifiers)) { |
nothing calls this directly
no outgoing calls
no test coverage detected