Debian package version of polhemus's g4display
Janis Streib
30.03.22 c9ab0b61c3b5a16f9ff9dc8e1af4e3529e7f5586
commit | author | age
c9ab0b 1 // ModDlg.cpp
JS 2
3 #include <gtk/gtk.h>
4 #include "ModDlg.h"
5
6
7
8 int ModalDlg::present_dlg(){
9
10   int rv=gtk_dialog_run(GTK_DIALOG(m_dlg));
11   update_data();
12   gtk_widget_destroy(m_dlg);
13   return rv;
14
15 }