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