]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-4
Patch from Yao Zhang fixing reference count leak.
[~andy/gtk] / ChangeLog.pre-2-4
1 Mon Mar 18 11:55:03 2002  Owen Taylor  <otaylor@redhat.com>
2
3         * gtk/gtkimmulticontext.c (gtk_im_multicontext_get_slave):
4         Patch from Yao Zhang fixing reference count leak.
5
6         * gtk/gtkentry.c (gtk_entry_key_release): if (entry->editable),
7         not if (!entry->editable).
8
9 Mon Mar 18 11:09:17 2002  Owen Taylor  <otaylor@redhat.com>
10
11         * gdk/x11/gdkwindow-x11.c (gdk_window_set_override_redirect): 
12         Fix backwards conditional. (#75019, Dan Winship.)
13
14 Sun Mar 17 01:11:16 2002  Kristian Rietveld  <kris@gtk.org>
15
16         * gtk/gtktreeview.c (gtk_tree_view_size_request): use
17         do_validate_rows instead of validate_rows_handler (fix by
18         Mike Pieper, #74126)
19
20 Sat Mar 16 23:54:56 2002  Kristian Rietveld  <kris@gtk.org>
21
22         * gdk/x11/gdkwindow-x11.c (gdk_window_set_static_bit_gravity): just
23         return when we have an input_only window (fix by Owen Taylor)
24
25         * gtk/gtktreeprivate.h (struct _GtkTreeViewPrivate): add
26         scroll_sync_timer
27
28         * gtk/gtktreeview.c (install_scroll_sync_handler): new function,
29         (scroll_sync_handler): ditto,
30         (gtk_tree_view_unrealize): take scroll_sync_timer into account
31         (gtk_tree_view_row_deleted): install scroll_sync_timer instead of
32         calling top_row_to_dy/dy_to_top_row directly
33         -- this greatly speeds up clearing the model (#73199)
34
35         * gtk/gtktreemodelsort.c
36         (gtk_tree_model_sort_convert_path_to_child_path): fix up this function,
37         for some reason I really screwed it up (fixes #74663)
38
39 2002-03-16  Sven Neumann  <sven@gimp.org>
40
41         * configure.in (GDK_PIXBUF_DEP_CFLAGS) (GDK_PIXBUF_XLIB_DEP_CFLAGS) 
42         (GDK_DEP_CFLAGS) (GTK_DEP_CFLAGS): include CFLAGS from gthread-2.0
43         so that the libs work correctly in a threaded environment.
44
45 Fri Mar 15 12:51:42 2002  Jonathan Blandford  <jrb@redhat.com>
46
47         * gtk/gtktreeviewcolumn.c
48         (gtk_tree_view_column_new_with_attributes): add example to docs,
49         as people are seeming to have trouble with this function.
50
51 2002-03-15  Tor Lillqvist  <tml@iki.fi>
52
53         * configure.in: Set MATH_LIB to empty also on Win32.
54
55 Fri Mar 15 15:37:01 2002  Owen Taylor  <otaylor@redhat.com>
56
57         * gdk/x11/gdkdrawable-x11.c (convert_to_format): 
58         Fix byte shift arithmetic for big-endian. (Tracked
59         down with help from Tuomas Kuosmanen)
60
61 Fri Mar 15 11:28:41 2002  Jonathan Blandford  <jrb@redhat.com>
62
63         * gtk/gtktreeview.c (gtk_tree_view_insert_column_with_data_func):
64         make args const, 74159
65         (gtk_tree_view_insert_column_with_attributes): ditto
66
67         * gtk/gtktreeviewcolumn.c
68         (gtk_tree_view_column_cell_process_action): remov unused variables.
69
70 Fri Mar 15 13:31:51 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
71
72         * gtk/gtkmenu.c (gtk_menu_leave_notify): Fix test for "active
73         submenu".
74
75 2002-03-15 Padraig O'Briain <padraig.obriain@sun.com>
76
77         * gdk/x11/gdkkeys-x11.c (update_keymaps): Fudge keymap to have lower
78         upper case variants if there is only a single keysym per keycode and
79         the key symbol has upper and lower case variants (#74512)
80
81 Thu Mar 14 17:09:52 2002  Owen Taylor  <otaylor@redhat.com>
82
83         * gdk/gdkwindow.c (gdk_window_process_all_updates): Fix rather
84         improbable reentrancy problem if a window is destroyed
85         while updates are being processed on another window. (Noticed
86         by Michael Meeks, #74708)
87
88 2002-03-14 Vitaly Tishkov <tvv@sparc.spb.su>
89
90         * gtk/gtktreemodelsort.c
91         typo in docs for gtk_tree_model_sort_convert_iter_to_child_iter() fixed
92
93
94 Thu Mar 14 11:17:18 2002  Owen Taylor  <otaylor@redhat.com>
95
96         * gtk/gtkkeyhash.c (_gtk_key_hash_remove_entry): When
97         removing keys from the key hash, reinsert the right list
98         back into the hash. (Dave Camp, #74571)
99
100 Wed Mar 13 17:17:40 2002  Owen Taylor  <otaylor@redhat.com>
101
102         * gtk/gtkobject.h: Remove left-over GTK_OBJECT_CONNECTED
103         macro that was defined in terms of the now-gone GTK_CONNECTED
104         flag. (Seth Burgess, #74028)
105
106 Wed Mar 13 17:11:10 2002  Owen Taylor  <otaylor@redhat.com>
107
108         * gtk/gtkaccelgroup.c (accel_group_weak_ref_detach): Unset 
109         the acceleratable_groups qdata because qdata isn't removed
110         on ->dispose but rather on ->finalize. (#74569, found
111         by Matt Wilson.)
112
113 Tue Mar 12 23:14:23 2002  Jonathan Blandford  <jrb@redhat.com>
114
115         * gtk/gtktreeselection.c (gtk_tree_selection_unselect_iter): Fix
116         cut-n-paste bug.
117
118 Sat Mar  9 18:23:25 2002  Richard Hestilow  <hestilow@ximian.com>
119
120         * gtk/gtkimage.c (gtk_image_set_from_filename): Allow NULL
121         filenames.
122         
123 Tue Mar 12 10:50:09 2002  Owen Taylor  <otaylor@redhat.com>
124
125         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_filter_keypress):
126         Fix incorrect return value, filter out returns of 0x7f for
127         the delete key. (#74179, Kang Jeong-He)
128
129 Mon Mar 11 23:42:11 2002  Jonathan Blandford  <jrb@redhat.com>
130
131         * gtk/gtktreemodel.c (gtk_tree_model_foreach): fix totally broken
132         foreach function.
133
134 2002-03-11  Matthias Clasen  <maclas@gmx.de>
135
136         * gtk/gtkitemfactory.c (gtk_item_factory_add_foreign): Document
137         gtk_{menu_item,widget}_set_accel_path() as the recommended API.  
138         (#69244)
139
140 2002-03-11  James Henstridge  <james@daa.com.au>
141
142         * configure.in: set CCAS and CCASFLAGS to get automake 1.6
143         compatibility without breaking things for people using 1.4.
144
145 Sun Mar 10 21:04:30 2002  Jonathan Blandford  <jrb@redhat.com>
146
147         * gtk/gtktreeview.c (gtk_tree_view_button_press): finally get the
148         right behavior.
149
150 Mon Mar 11 01:25:14 2002  Kristian Rietveld  <kris@gtk.org>
151
152         * gtk/gtktreeview.c (gtk_tree_view_button_press): compare path with
153         cursor path and not with the selected iter in the 'decide to edit'
154         check
155