--- np2/x11/qt/Attic/qtmain.cpp 2003/12/19 16:08:02 1.2 +++ np2/x11/qt/Attic/qtmain.cpp 2004/01/23 14:35:46 1.3 @@ -114,6 +114,14 @@ gui_qt_set_window_title(const char* str) np2EmulationWindow->setCaption(str); } +void +gui_qt_messagebox(const char *title, const char *msg) +{ + + printf("%s\n", title); + printf(msg); +} + // toolkit data gui_toolkit_t qt_toolkit = { gui_qt_get_toolkit, @@ -125,6 +133,7 @@ gui_toolkit_t qt_toolkit = { gui_qt_widget_quit, gui_qt_event_process, gui_qt_set_window_title, + gui_qt_messagebox, };