summaryrefslogtreecommitdiff
path: root/gtk/gtkselectionmodel.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2020-06-08 18:26:48 +0200
committerBenjamin Otte <otte@redhat.com>2020-06-08 18:26:48 +0200
commitd294b01cee804c95024f1623289686d77c549d62 (patch)
treec5567d2b144ffa12785c00194e4f0cd88f2d64b4 /gtk/gtkselectionmodel.c
parent5d9dc25115e111c71d27ea765cf1a31fa0f256ef (diff)
downloadgtk+-d294b01cee804c95024f1623289686d77c549d62.tar.gz
selectionmodel: Rename "exclusive" to "unselect_rest"
The name is better at explaining what this boolean is meant to do.
Diffstat (limited to 'gtk/gtkselectionmodel.c')
-rw-r--r--gtk/gtkselectionmodel.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/gtk/gtkselectionmodel.c b/gtk/gtkselectionmodel.c
index 9deb1e32de..c2edaa2a51 100644
--- a/gtk/gtkselectionmodel.c
+++ b/gtk/gtkselectionmodel.c
@@ -85,7 +85,7 @@ gtk_selection_model_default_is_selected (GtkSelectionModel *model,
static gboolean
gtk_selection_model_default_select_item (GtkSelectionModel *model,
guint position,
- gboolean exclusive)
+ gboolean unselect_rest)
{
return FALSE;
}
@@ -100,7 +100,7 @@ static gboolean
gtk_selection_model_default_select_range (GtkSelectionModel *model,
guint position,
guint n_items,
- gboolean exclusive)
+ gboolean unselect_rest)
{
return FALSE;
}
@@ -228,21 +228,21 @@ gtk_selection_model_is_selected (GtkSelectionModel *model,
* gtk_selection_model_select_item:
* @model: a #GtkSelectionModel
* @position: the position of the item to select
- * @exclusive: whether previously selected items should be unselected
+ * @unselect_rest: whether previously selected items should be unselected
*
* Requests to select an item in the model.
*/
gboolean
gtk_selection_model_select_item (GtkSelectionModel *model,
guint position,
- gboolean exclusive)
+ gboolean unselect_rest)
{
GtkSelectionModelInterface *iface;
g_return_val_if_fail (GTK_IS_SELECTION_MODEL (model), 0);
iface = GTK_SELECTION_MODEL_GET_IFACE (model);
- return iface->select_item (model, position, exclusive);
+ return iface->select_item (model, position, unselect_rest);
}
/**
@@ -269,7 +269,7 @@ gtk_selection_model_unselect_item (GtkSelectionModel *model,
* @model: a #GtkSelectionModel
* @position: the first item to select
* @n_items: the number of items to select
- * @exclusive: whether previously selected items should be unselected
+ * @unselect_rest: whether previously selected items should be unselected
*
* Requests to select a range of items in the model.
*/
@@ -277,14 +277,14 @@ gboolean
gtk_selection_model_select_range (GtkSelectionModel *model,
guint position,
guint n_items,
- gboolean exclusive)
+ gboolean unselect_rest)
{
GtkSelectionModelInterface *iface;
g_return_val_if_fail (GTK_IS_SELECTION_MODEL (model), 0);
iface = GTK_SELECTION_MODEL_GET_IFACE (model);
- return iface->select_range (model, position, n_items, exclusive);
+ return iface->select_range (model, position, n_items, unselect_rest);
}
/**