mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
Fixes
svn path=/trunk/; revision=20197
This commit is contained in:
parent
8d5e58b632
commit
2855f81636
17
ChangeLog
17
ChangeLog
@ -1,6 +1,21 @@
|
||||
2008-05-27 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
106574 - Inconsistent increment behavior for gtkspinbutton
|
||||
Bug 351910 – Search column setting lost
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_set_search_column): Clarify
|
||||
the docs. Patch by Matt Barnes.
|
||||
|
||||
2008-05-27 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Bug 477278 - avoid unnecessary pointer subtraction
|
||||
|
||||
* gtk/gtkaccelgroup.c (quick_accel_remove): Avoid pointer
|
||||
subtraction that sparse complains about. Patch by Christian
|
||||
Persch.
|
||||
|
||||
2008-05-27 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Bug 106574 - Inconsistent increment behavior for gtkspinbutton
|
||||
|
||||
* gtk/gtkspinbutton.c (gtk_spin_button_real_value_change):
|
||||
Commit the entry text before doing an increment. Patch by
|
||||
|
@ -397,10 +397,10 @@ quick_accel_add (GtkAccelGroup *accel_group,
|
||||
|
||||
static void
|
||||
quick_accel_remove (GtkAccelGroup *accel_group,
|
||||
GtkAccelGroupEntry *entry)
|
||||
guint pos)
|
||||
{
|
||||
guint pos = entry - accel_group->priv_accels;
|
||||
GQuark accel_quark = 0;
|
||||
GtkAccelGroupEntry *entry = accel_group->priv_accels + pos;
|
||||
guint accel_key = entry->key.accel_key;
|
||||
GdkModifierType accel_mods = entry->key.accel_mods;
|
||||
GClosure *closure = entry->closure;
|
||||
@ -577,7 +577,7 @@ gtk_accel_group_disconnect (GtkAccelGroup *accel_group,
|
||||
if (accel_group->priv_accels[i].closure == closure)
|
||||
{
|
||||
g_object_ref (accel_group);
|
||||
quick_accel_remove (accel_group, accel_group->priv_accels + i);
|
||||
quick_accel_remove (accel_group, i);
|
||||
g_object_unref (accel_group);
|
||||
return TRUE;
|
||||
}
|
||||
|
@ -13889,13 +13889,14 @@ gtk_tree_view_get_search_column (GtkTreeView *tree_view)
|
||||
* @column: the column of the model to search in, or -1 to disable searching
|
||||
*
|
||||
* Sets @column as the column where the interactive search code should
|
||||
* search in.
|
||||
* search in for the current model.
|
||||
*
|
||||
* If the search column is set, users can use the "start-interactive-search"
|
||||
* key binding to bring up search popup. The enable-search property controls
|
||||
* whether simply typing text will also start an interactive search.
|
||||
*
|
||||
* Note that @column refers to a column of the model.
|
||||
* Note that @column refers to a column of the current model. The search
|
||||
* column is reset to -1 when the model is changed.
|
||||
*/
|
||||
void
|
||||
gtk_tree_view_set_search_column (GtkTreeView *tree_view,
|
||||
|
Loading…
Reference in New Issue
Block a user