--- freem/src/mwapi_window.c 2025/03/09 15:20:18 1.2 +++ freem/src/mwapi_window.c 2025/04/10 01:24:38 1.4 @@ -1,23 +1,11 @@ /* - * * - * * * - * * * - * *************** - * * * * * - * * MUMPS * - * * * * * - * *************** - * * * - * * * - * * - * - * mwapi_window.c + * $Id: mwapi_window.c,v 1.4 2025/04/10 01:24:38 snw Exp $ * mwapi window support * * * Author: Serena Willis * Copyright (C) 1998 MUG Deutschland - * Copyright (C) 2014, 2020, 2021 Coherent Logic Development LLC + * Copyright (C) 2014, 2020, 2021, 2025 Coherent Logic Development LLC * * * This file is part of FreeM. @@ -35,6 +23,16 @@ * You should have received a copy of the GNU Affero Public License * along with FreeM. If not, see . * + * $Log: mwapi_window.c,v $ + * Revision 1.4 2025/04/10 01:24:38 snw + * Remove C++ style comments + * + * Revision 1.3 2025/03/09 19:50:47 snw + * Second phase of REUSE compliance and header reformat + * + * + * SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC + * SPDX-License-Identifier: AGPL-3.0-or-later **/ #include "config.h" @@ -82,7 +80,7 @@ void mwapi_win_show(mwapi_window *win) mwapi_event *destroy_ev = mwapi_event_new ("CLOSE", win->window_name, win->window); 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; @@ -110,7 +108,7 @@ mwapi_window *mwapi_win_get(char *window 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->next = mwapi_win_head;