Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-commits: [Wireshark-commits] rev 30311: /trunk/ /trunk/gtk/: main.c /trunk/tools/: checkA

Date: Sun, 04 Oct 2009 18:11:24 GMT
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=30311

User: etxrab
Date: 2009/10/04 11:11 AM

Log:
 From GTK docs:
 Warning
 gtk_window_set_policy is deprecated and should not be used in newly-written code. Use gtk_window_set_resizable() instead.
 
 Changes how a toplevel window deals with its size request and user resize attempts. There are really only two reasonable ways to call this function: 
 
 1.gtk_window_set_policy (GTK_WINDOW (window), FALSE, TRUE, FALSE) means that the window is user-resizable. 
 
 2.gtk_window_set_policy (GTK_WINDOW (window), FALSE, FALSE, TRUE) means that the window's size is program-controlled, and should simply match the current size request of the window's children. 
 
 gtk_window_set_resizable () :
 Sets whether the user can resize a window. Windows are user resizable by default.

Directory: /trunk/gtk/
  Changes    Path          Action
  +0 -2      main.c        Modified

Directory: /trunk/tools/
  Changes    Path            Action
  +1 -1      checkAPIs.pl    Modified