[gtk+] stylecontext: Get rid of unused parameter
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] stylecontext: Get rid of unused parameter
- Date: Fri, 16 Mar 2012 17:09:24 +0000 (UTC)
commit f9727ee1bf7bb47244422e0234514ae47e567ed3
Author: Benjamin Otte <otte redhat com>
Date: Thu Mar 15 19:01:02 2012 +0100
stylecontext: Get rid of unused parameter
It was always FALSE
gtk/gtkstylecontext.c | 15 +++++++--------
1 files changed, 7 insertions(+), 8 deletions(-)
---
diff --git a/gtk/gtkstylecontext.c b/gtk/gtkstylecontext.c
index e04e03b..ccf2315 100644
--- a/gtk/gtkstylecontext.c
+++ b/gtk/gtkstylecontext.c
@@ -908,8 +908,7 @@ gtk_style_context_impl_get_property (GObject *object,
static GList *
find_next_candidate (GList *local,
- GList *global,
- gboolean ascending)
+ GList *global)
{
if (local && global)
{
@@ -919,9 +918,9 @@ find_next_candidate (GList *local,
global_data = global->data;
if (local_data->priority < global_data->priority)
- return (ascending) ? local : global;
+ return global;
else
- return (ascending) ? global : local;
+ return local;
}
else if (local)
return local;
@@ -952,7 +951,7 @@ build_properties (GtkStyleContext *context,
lookup = _gtk_css_lookup_new ();
- while ((elem = find_next_candidate (list, global_list, FALSE)) != NULL)
+ while ((elem = find_next_candidate (list, global_list)) != NULL)
{
GtkStyleProviderData *data;
GtkStyleProperties *provider_style;
@@ -1008,7 +1007,7 @@ build_icon_factories (GtkStyleContext *context,
global_list = g_list_last (global_list);
}
- while ((elem = find_next_candidate (list, global_list, FALSE)) != NULL)
+ while ((elem = find_next_candidate (list, global_list)) != NULL)
{
GtkIconFactory *factory;
GtkStyleProviderData *data;
@@ -2441,7 +2440,7 @@ _gtk_style_context_peek_style_property (GtkStyleContext *context,
list = priv->providers_last;
global = global_list;
- while ((elem = find_next_candidate (list, global, FALSE)) != NULL)
+ while ((elem = find_next_candidate (list, global)) != NULL)
{
GtkStyleProviderData *provider_data;
@@ -2893,7 +2892,7 @@ gtk_style_context_color_lookup_func (gpointer contextp,
sym_color = NULL;
while (sym_color == NULL &&
- (elem = find_next_candidate (list, global_list, FALSE)) != NULL)
+ (elem = find_next_candidate (list, global_list)) != NULL)
{
GtkStyleProviderData *data;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]