Mercurial > hg > xemacs-beta
diff src/frame-gtk.c @ 5126:2a462149bd6a ben-lisp-object
merge
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Wed, 24 Feb 2010 19:04:27 -0600 |
parents | b5df3737028a 07dcc7000bbf |
children | a9c41067dd88 |
line wrap: on
line diff
--- a/src/frame-gtk.c Wed Feb 24 01:58:04 2010 -0600 +++ b/src/frame-gtk.c Wed Feb 24 19:04:27 2010 -0600 @@ -1,6 +1,6 @@ /* Functions for the GTK toolkit. Copyright (C) 1989, 1992-5, 1997 Free Software Foundation, Inc. - Copyright (C) 1995, 1996, 2002, 2003 Ben Wing. + Copyright (C) 1995, 1996, 2002, 2003, 2010 Ben Wing. This file is part of XEmacs. @@ -371,7 +371,7 @@ { GdkWindowHints geometry_mask = GDK_HINT_RESIZE_INC; /* Deal with the cell size */ - default_face_height_and_width (wrap_frame (f), &geometry.height_inc, &geometry.width_inc); + default_face_width_and_height (wrap_frame (f), &geometry.width_inc, &geometry.height_inc); gtk_window_set_geometry_hints (GTK_WINDOW (shell), FRAME_GTK_TEXT_WIDGET (f), &geometry, geometry_mask); @@ -382,7 +382,7 @@ FRAME_HEIGHT (f) = h; FRAME_WIDTH (f) = w; - change_frame_size (f, h, w, 0); + change_frame_size (f, w, h, 0); { GtkRequisition req; @@ -1189,13 +1189,14 @@ GdkWindowHints geometry_mask = GDK_HINT_RESIZE_INC; /* Update the cell size */ - default_face_height_and_width (wrap_frame (f), &geometry.height_inc, &geometry.width_inc); + default_face_width_and_height (wrap_frame (f), &geometry.width_inc, + &geometry.height_inc); gtk_window_set_geometry_hints (GTK_WINDOW (shell), FRAME_GTK_TEXT_WIDGET (f), &geometry, geometry_mask); } - change_frame_size (f, rows, cols, 0); + change_frame_size (f, cols, rows, 0); { GtkRequisition req; @@ -1370,7 +1371,7 @@ gint width_inc = 10; gint height_inc = 10; - default_face_height_and_width (wrap_frame (frm), &height_inc, &width_inc); + default_face_width_and_height (wrap_frame (frm), &width_inc, &height_inc); geometry_mask = GDK_HINT_RESIZE_INC; geometry.width_inc = width_inc; geometry.height_inc = height_inc;