Ethereal-cvs: [Ethereal-cvs] cvs commit: ethereal/gtk prefs_dlg.c

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Guy Harris <guy@xxxxxxxxxxxxxxxxx>
Date: Thu, 2 Oct 2003 16:18:38 -0500 (CDT)
guy         2003/10/02 16:18:38 CDT

  Modified files:
    gtk                  prefs_dlg.c 
  Log:
  From Tomas Kukosa: radio button groups are GSLists, which means that the
  radio button group for a button changes when new buttons are added to it
  (adding to the beginning of a singly-linked list takes constant time,
  adding to the end takes time linear in the length of the list, and a
  GSList * points to the beginning of the list).  Re-fetch the radio
  button group each time through the loop that adds new radio buttons to a
  radio button group for a preference.
  
  Revision  Changes    Path
  1.63      +2 -3      ethereal/gtk/prefs_dlg.c