Janis Streib
30.03.22 bc34f45ca003196c9d727836dad724646bc37ba6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// ModDlg.cpp
 
#include <gtk/gtk.h>
#include "ModDlg.h"
 
 
 
int ModalDlg::present_dlg(){
 
  int rv=gtk_dialog_run(GTK_DIALOG(m_dlg));
  update_data();
  gtk_widget_destroy(m_dlg);
  return rv;
 
}