tFix Win32 GtkTable function declarations - vaccinewars - be a doctor and try to vaccinate the world
 (HTM) git clone git://src.adamsgaard.dk/vaccinewars
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 9bf73cb11fca313fe640573cfa9e82148de0aafa
 (DIR) parent 398499b040c7d1c13c9c26c61c1a714a582744a5
 (HTM) Author: Ben Webb <ben@salilab.org>
       Date:   Fri,  1 Jan 2021 23:40:05 -0800
       
       Fix Win32 GtkTable function declarations
       
       A dp_ prefix was mistakenly added to all gtk_table_*
       functions for Win32; remove it.
       
       Diffstat:
         M src/gtkport/gtkport.h               |      30 +++++++++++++++---------------
       
       1 file changed, 15 insertions(+), 15 deletions(-)
       ---
 (DIR) diff --git a/src/gtkport/gtkport.h b/src/gtkport/gtkport.h
       t@@ -383,21 +383,21 @@ GtkWidget *gtk_entry_new();
        void gtk_entry_set_visibility(GtkEntry *entry, gboolean visible);
        
        /* GtkTable implementation */
       -GtkWidget *dp_gtk_table_new(guint rows, guint cols, gboolean homogeneous);
       -void dp_gtk_table_resize(GtkTable *table, guint rows, guint cols);
       -void dp_gtk_table_attach(GtkTable *table, GtkWidget *widget,
       -                         guint left_attach, guint right_attach,
       -                         guint top_attach, guint bottom_attach,
       -                         GtkAttachOptions xoptions, GtkAttachOptions yoptions,
       -                         guint xpadding, guint ypadding);
       -void dp_gtk_table_attach_defaults(GtkTable *table, GtkWidget *widget,
       -                                  guint left_attach, guint right_attach,
       -                                  guint top_attach, guint bottom_attach);
       -void dp_gtk_table_set_row_spacing(GtkTable *table, guint row, guint spacing);
       -void dp_gtk_table_set_col_spacing(GtkTable *table, guint column,
       -                                  guint spacing);
       -void dp_gtk_table_set_row_spacings(GtkTable *table, guint spacing);
       -void dp_gtk_table_set_col_spacings(GtkTable *table, guint spacing);
       +GtkWidget *gtk_table_new(guint rows, guint cols, gboolean homogeneous);
       +void gtk_table_resize(GtkTable *table, guint rows, guint cols);
       +void gtk_table_attach(GtkTable *table, GtkWidget *widget,
       +                      guint left_attach, guint right_attach,
       +                      guint top_attach, guint bottom_attach,
       +                      GtkAttachOptions xoptions, GtkAttachOptions yoptions,
       +                      guint xpadding, guint ypadding);
       +void gtk_table_attach_defaults(GtkTable *table, GtkWidget *widget,
       +                               guint left_attach, guint right_attach,
       +                               guint top_attach, guint bottom_attach);
       +void gtk_table_set_row_spacing(GtkTable *table, guint row, guint spacing);
       +void gtk_table_set_col_spacing(GtkTable *table, guint column,
       +                               guint spacing);
       +void gtk_table_set_row_spacings(GtkTable *table, guint spacing);
       +void gtk_table_set_col_spacings(GtkTable *table, guint spacing);
        
        GSList *gtk_radio_button_get_group(GtkRadioButton *radio_button);
        void gtk_editable_insert_text(GtkEditable *editable, const gchar *new_text,