Diff for /freem/src/mwapi_window.c between versions 1.3 and 1.4

version 1.3, 2025/03/09 19:50:47 version 1.4, 2025/04/10 01:24:38
Line 24 Line 24
  *   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.   *   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.
  *   *
  *   $Log$   *   $Log$
    *   Revision 1.4  2025/04/10 01:24:38  snw
    *   Remove C++ style comments
    *
  *   Revision 1.3  2025/03/09 19:50:47  snw   *   Revision 1.3  2025/03/09 19:50:47  snw
  *   Second phase of REUSE compliance and header reformat   *   Second phase of REUSE compliance and header reformat
  *   *
Line 77  void mwapi_win_show(mwapi_window *win) Line 80  void mwapi_win_show(mwapi_window *win)
         mwapi_event *destroy_ev = mwapi_event_new ("CLOSE", win->window_name, win->window);                 mwapi_event *destroy_ev = mwapi_event_new ("CLOSE", win->window_name, win->window);       
         mwapi_wire_event (destroy_ev, "CLOSE^%MWAPI.EVENT.DEFAULT");          mwapi_wire_event (destroy_ev, "CLOSE^%MWAPI.EVENT.DEFAULT");
                   
         //gtk_widget_show_all (win->window);          /* gtk_widget_show_all (win->window); */
                   
         win->win_visible = TRUE;          win->win_visible = TRUE;
                   
Line 105  mwapi_window *mwapi_win_get(char *window Line 108  mwapi_window *mwapi_win_get(char *window
   
     stcpy (t->window_name, window_name);      stcpy (t->window_name, window_name);
   
     //t->window = gtk_window_new (GTK_WINDOW_TOPLEVEL);      /* t->window = gtk_window_new (GTK_WINDOW_TOPLEVEL); */
     t->win_visible = FALSE;      t->win_visible = FALSE;
           
     t->next = mwapi_win_head;      t->next = mwapi_win_head;

Removed from v.1.3  
changed lines
  Added in v.1.4


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>