MCPcopy Create free account
hub / github.com/Tom94/tev / ErrorDialog

Method ErrorDialog

src/ErrorDialog.cpp:31–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29namespace tev {
30
31ErrorDialog::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
44bool ErrorDialog::keyboard_event(int key, int scancode, int action, int modifiers) {
45 if (MessageDialog::keyboard_event(key, scancode, action, modifiers)) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected