]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-10
Short-circuit the text to the exact same thing, so we don't unexpectedly
[~andy/gtk] / ChangeLog.pre-2-10
1 Wed Mar 20 19:00:03 2002  Owen Taylor  <otaylor@redhat.com>
2
3         * gtk/gtkentry.c (gtk_entry_set_text): Short-circuit
4         the text to the exact same thing, so we don't 
5         unexpectedly change the selection or cursor position.
6         (#74290, John Ellis.)
7
8 Thu Mar 21 00:05:14 2002  Kristian Rietveld  <kris@gtk.org>
9
10         * gtk/gtktreeview.c (gtk_tree_view_get_background_area),
11         (gtk_tree_view_get_cell_area): fix logic (fixes #74235, #73593)
12
13 Wed Mar 20 17:11:51 2002  Owen Taylor  <otaylor@redhat.com>
14
15         * gtk/gtkrc.c: Patch from Richard Hestilow to fix
16         gtk-font-name changes for widgets that get the actual
17         default style. (#73709)
18
19 Wed Mar 20 22:59:23 2002  Kristian Rietveld  <kris@gtk.org>
20
21         * gtk/gtkrbtree.[ch]: add _gtk_rbtree_set_fixed_height()
22
23         * gtk/gtktreeprivate.h: add fixed_height_check field
24
25         * gtk/gtktreeview.c (gtk_tree_view_init): initialize
26         scroll_sync_timer and fixed_height_check
27         (do_validate_rows): add fixed_height_check. If all validated rows
28         in the first cycle have the same height, then we set that height for
29         the entire tree. This is some sort of 'fake' optimization, but helps
30         a lot for the common case. We keep validating the entire tree in
31         the background though.
32         (gtk_tree_view_set_model): reset fixed_height_check
33
34 Wed Mar 20 16:36:08 2002  Owen Taylor  <otaylor@redhat.com>
35
36         * gtk/*.c: Patch from Erwann Chenede, #73900 fixing
37         a lot of warnings with Forte CC, mostly implicit
38         casts between void * and function pointers.
39         
40         * gdk/gdkevents.c (gdk_event_get_state): GdkEventVisibility's
41         state field is not a GdkModifierType. (Also #73900)
42
43 Wed Mar 20 12:35:22 2002  Owen Taylor  <otaylor@redhat.com>
44
45         * gtk/gtkwidget.c (gtk_widget_grab_default): Remove
46         leftover notification of has-default. (#75508, Jacob
47         Berkman.)
48
49 Wed Mar 20 12:27:07 2002  Owen Taylor  <otaylor@redhat.com>
50
51         * gtk/gtkaccelgroup.c (gtk_accelerator_valid): Allow
52         arrow keys as accelerators, as long as some modifier
53         is pressed. (#75495)
54
55         * gtk/gtkaccelgroup.c (gtk_accelerator_valid): Fix
56         incorrect example in the docs.
57
58 Wed Mar 20 12:06:30 2002  Owen Taylor  <otaylor@redhat.com>
59
60         * gtk/gtkwidget.c (gtk_widget_set_child_visible):
61         Fix segfault when widget->parent is NULL. 
62         (#75615, Alexey A. Malyshev) 
63
64 Wed Mar 20 11:32:07 2002  Owen Taylor  <otaylor@redhat.com>
65
66         * gtk/gtkentry.c: Improve test to prevent infinite
67         loop. (#74952, Thomas Leonard)
68
69         * gtk/gtkmenushell.c (gtk_real_menu_shell_cycle_focus):
70         Fix warning when toplevel menu shell isn't a menu
71         bar. (Thomas Leonard, #75602)
72
73 Wed Mar 20 11:00:59 2002  Owen Taylor  <otaylor@redhat.com>
74
75         * configure.in: Use $PKG_CONFIG, not pkg-config.
76         (LEE Sau Dan, #75572)
77
78 Wed Mar 20 10:55:56 2002  Owen Taylor  <otaylor@redhat.com>
79
80         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Fix assignment
81         of time in scroll events. (Sven Neumann, #75574)
82
83 2002-03-20  Tor Lillqvist  <tml@iki.fi>
84
85         * gdk/win32/gdkdnd-win32.c (gdk_drag_find_window): Use
86         gdk_window_get_toplevel(), as it is the top-level windows that are
87         registered for DND.
88
89         * gdk/win32/gdkwin32.h: Don't include gdkinternals.h.
90
91 2002-03-19  jacob berkman  <jacob@ximian.com>
92
93         * gtk/gtkcombo.c (gtk_combo_find): fix infinite loop when
94         gtk_combo_func() returns NULL (bug #75464)
95
96 2002-03-18  jacob berkman  <jacob@ximian.com>
97
98         * gtk/gtkaspectframe.c (gtk_aspect_frame_class_init): set the
99         correct min/max values for the ratio property (fixes #75331)
100
101 Mon Mar 18 11:55:03 2002  Owen Taylor  <otaylor@redhat.com>
102
103         * gtk/gtkimmulticontext.c (gtk_im_multicontext_get_slave):
104         Patch from Yao Zhang fixing reference count leak.
105
106         * gtk/gtkentry.c (gtk_entry_key_release): if (entry->editable),
107         not if (!entry->editable).
108
109 Mon Mar 18 11:09:17 2002  Owen Taylor  <otaylor@redhat.com>
110
111         * gdk/x11/gdkwindow-x11.c (gdk_window_set_override_redirect): 
112         Fix backwards conditional. (#75019, Dan Winship.)
113
114 Sun Mar 17 01:11:16 2002  Kristian Rietveld  <kris@gtk.org>
115
116         * gtk/gtktreeview.c (gtk_tree_view_size_request): use
117         do_validate_rows instead of validate_rows_handler (fix by
118         Mike Pieper, #74126)
119
120 Sat Mar 16 23:54:56 2002  Kristian Rietveld  <kris@gtk.org>
121
122         * gdk/x11/gdkwindow-x11.c (gdk_window_set_static_bit_gravity): just
123         return when we have an input_only window (fix by Owen Taylor)
124
125         * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): add
126         scroll_sync_timer
127
128         * gtk/gtktreeview.c (install_scroll_sync_handler): new function,
129         (scroll_sync_handler): ditto,
130         (gtk_tree_view_unrealize): take scroll_sync_timer into account
131         (gtk_tree_view_row_deleted): install scroll_sync_timer instead of
132         calling top_row_to_dy/dy_to_top_row directly
133         -- this greatly speeds up clearing the model (#73199)
134
135         * gtk/gtktreemodelsort.c
136         (gtk_tree_model_sort_convert_path_to_child_path): fix up this function,
137         for some reason I really screwed it up (fixes #74663)
138
139 2002-03-16  Sven Neumann  <sven@gimp.org>
140
141         * configure.in (GDK_PIXBUF_DEP_CFLAGS) (GDK_PIXBUF_XLIB_DEP_CFLAGS) 
142         (GDK_DEP_CFLAGS) (GTK_DEP_CFLAGS): include CFLAGS from gthread-2.0
143         so that the libs work correctly in a threaded environment.
144
145 Fri Mar 15 12:51:42 2002  Jonathan Blandford  <jrb@redhat.com>
146
147         * gtk/gtktreeviewcolumn.c
148         (gtk_tree_view_column_new_with_attributes): add example to docs,
149         as people are seeming to have trouble with this function.
150
151 2002-03-15  Tor Lillqvist  <tml@iki.fi>
152
153         * configure.in: Set MATH_LIB to empty also on Win32.
154
155 Fri Mar 15 15:37:01 2002  Owen Taylor  <otaylor@redhat.com>
156
157         * gdk/x11/gdkdrawable-x11.c (convert_to_format): 
158         Fix byte shift arithmetic for big-endian. (Tracked
159         down with help from Tuomas Kuosmanen)
160
161 Fri Mar 15 11:28:41 2002  Jonathan Blandford  <jrb@redhat.com>
162
163         * gtk/gtktreeview.c (gtk_tree_view_insert_column_with_data_func):
164         make args const, 74159
165         (gtk_tree_view_insert_column_with_attributes): ditto
166
167         * gtk/gtktreeviewcolumn.c
168         (gtk_tree_view_column_cell_process_action): remov unused variables.
169
170 Fri Mar 15 13:31:51 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
171
172         * gtk/gtkmenu.c (gtk_menu_leave_notify): Fix test for "active
173         submenu".
174
175 2002-03-15 Padraig O'Briain <padraig.obriain@sun.com>
176
177         * gdk/x11/gdkkeys-x11.c (update_keymaps): Fudge keymap to have lower
178         upper case variants if there is only a single keysym per keycode and
179         the key symbol has upper and lower case variants (#74512)
180
181 Thu Mar 14 17:09:52 2002  Owen Taylor  <otaylor@redhat.com>
182
183         * gdk/gdkwindow.c (gdk_window_process_all_updates): Fix rather
184         improbable reentrancy problem if a window is destroyed
185         while updates are being processed on another window. (Noticed
186         by Michael Meeks, #74708)
187
188 2002-03-14 Vitaly Tishkov <tvv@sparc.spb.su>
189
190         * gtk/gtktreemodelsort.c
191         typo in docs for gtk_tree_model_sort_convert_iter_to_child_iter() fixed
192
193
194 Thu Mar 14 11:17:18 2002  Owen Taylor  <otaylor@redhat.com>
195
196         * gtk/gtkkeyhash.c (_gtk_key_hash_remove_entry): When
197         removing keys from the key hash, reinsert the right list
198         back into the hash. (Dave Camp, #74571)
199
200 Wed Mar 13 17:17:40 2002  Owen Taylor  <otaylor@redhat.com>
201
202         * gtk/gtkobject.h: Remove left-over GTK_OBJECT_CONNECTED
203         macro that was defined in terms of the now-gone GTK_CONNECTED
204         flag. (Seth Burgess, #74028)
205
206 Wed Mar 13 17:11:10 2002  Owen Taylor  <otaylor@redhat.com>
207
208         * gtk/gtkaccelgroup.c (accel_group_weak_ref_detach): Unset 
209         the acceleratable_groups qdata because qdata isn't removed
210         on ->dispose but rather on ->finalize. (#74569, found
211         by Matt Wilson.)
212
213 Tue Mar 12 23:14:23 2002  Jonathan Blandford  <jrb@redhat.com>
214
215         * gtk/gtktreeselection.c (gtk_tree_selection_unselect_iter): Fix
216         cut-n-paste bug.
217
218 Sat Mar  9 18:23:25 2002  Richard Hestilow  <hestilow@ximian.com>
219
220         * gtk/gtkimage.c (gtk_image_set_from_filename): Allow NULL
221         filenames.
222         
223 Tue Mar 12 10:50:09 2002  Owen Taylor  <otaylor@redhat.com>
224
225         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_filter_keypress):
226         Fix incorrect return value, filter out returns of 0x7f for
227         the delete key. (#74179, Kang Jeong-He)
228
229 Mon Mar 11 23:42:11 2002  Jonathan Blandford  <jrb@redhat.com>
230
231         * gtk/gtktreemodel.c (gtk_tree_model_foreach): fix totally broken
232         foreach function.
233
234 2002-03-11  Matthias Clasen  <maclas@gmx.de>
235
236         * gtk/gtkitemfactory.c (gtk_item_factory_add_foreign): Document
237         gtk_{menu_item,widget}_set_accel_path() as the recommended API.  
238         (#69244)
239
240 2002-03-11  James Henstridge  <james@daa.com.au>
241
242         * configure.in: set CCAS and CCASFLAGS to get automake 1.6
243         compatibility without breaking things for people using 1.4.
244
245 Sun Mar 10 21:04:30 2002  Jonathan Blandford  <jrb@redhat.com>
246
247         * gtk/gtktreeview.c (gtk_tree_view_button_press): finally get the
248         right behavior.
249
250 Mon Mar 11 01:25:14 2002  Kristian Rietveld  <kris@gtk.org>
251
252         * gtk/gtktreeview.c (gtk_tree_view_button_press): compare path with
253         cursor path and not with the selected iter in the 'decide to edit'
254         check
255