Debian package version of polhemus's g4term
Janis Streib
30.03.22 00027aa5bb1da6f2d44c03a082988de8c64dab4a
commit | author | age
8c7455 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 }