]> Pileus Git - ~andy/gtk/blobdiff - tests/testthreads.c
stylecontext: Do invalidation on first resize container
[~andy/gtk] / tests / testthreads.c
index 469e195704c6991f95e749b629f2519ba87469b2..867e44b6143983fda4e2bfecba6ad134baa5e89e 100644 (file)
@@ -12,9 +12,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
 /*
@@ -65,9 +63,9 @@ counter (void *data)
 
   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
   gtk_window_set_title (GTK_WINDOW (window), name);
-  gtk_widget_set_usize (window, 100, 50);
+  gtk_widget_set_size_request (window, 100, 50);
 
-  vbox = gtk_vbox_new (FALSE, 0);
+  vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, FALSE, 0);
 
   g_signal_connect (window, "delete-event",
                     G_CALLBACK (delete_cb), &flag);