[nautilus/wip/csoriano/search-popover: 36/43] search-popover: use full more descriptive var name
- From: Carlos Soriano Sánchez <csoriano src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [nautilus/wip/csoriano/search-popover: 36/43] search-popover: use full more descriptive var name
- Date: Tue, 2 Feb 2016 21:15:58 +0000 (UTC)
commit 7148732a5f3923acdcaea80c7c8be7a5d3511785
Author: Carlos Soriano <csoriano gnome org>
Date: Mon Feb 1 15:31:26 2016 +0100
search-popover: use full more descriptive var name
"n" is not really useful.
src/nautilus-search-popover.c | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
---
diff --git a/src/nautilus-search-popover.c b/src/nautilus-search-popover.c
index bcbbdc6..8a54eda 100644
--- a/src/nautilus-search-popover.c
+++ b/src/nautilus-search-popover.c
@@ -610,48 +610,48 @@ fill_fuzzy_dates_listbox (NautilusSearchPopover *popover)
while (days < max_days)
{
gchar *label;
- gint n, step;
+ gint normalized, step;
if (days == 0)
{
- n = 0;
+ normalized = 0;
step = 1;
}
else if (days < 7)
{
/* days */
- n = days;
+ normalized = days;
step = 2;
}
else if (days < 30)
{
/* weeks */
- n = days / 7;
+ normalized = days / 7;
step = 7;
}
else if (days < 365)
{
/* months */
- n = days / 30;
+ normalized = days / 30;
step = 84;
}
else if (days < 1825)
{
/* years */
- n = days / 365;
+ normalized = days / 365;
step = 365;
}
else
{
/* after the first 5 years, jump at a 5-year pace */
- n = days / 365;
+ normalized = days / 365;
step = 1825;
}
- label = g_strdup_printf (get_text_for_day (days), n);
+ label = g_strdup_printf (get_text_for_day (days), normalized);
- row = create_row_for_label (label, n == 1);
g_object_set_data (G_OBJECT (row), "days", GINT_TO_POINTER (days));
+ row = create_row_for_label (label, normalized == 1);
gtk_container_add (GTK_CONTAINER (popover->dates_listbox), row);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]