[Xfce4-commits] [xfce/thunar] 04/05: Fix typo busy_pulse in thunar-shortcuts-model.c

noreply at xfce.org noreply at xfce.org
Fri Mar 27 23:33:18 CET 2015


This is an automated email from the git hooks/post-receive script.

hjudt pushed a commit to branch master
in repository xfce/thunar.

commit b11cc715a06d99022d6e308e27d166cd030a510d
Author: Harald Judt <h.judt at gmx.at>
Date:   Fri Mar 27 23:23:22 2015 +0100

    Fix typo busy_pulse in thunar-shortcuts-model.c
---
 thunar/thunar-shortcuts-model.c |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/thunar/thunar-shortcuts-model.c b/thunar/thunar-shortcuts-model.c
index 9ace3e3..ef2a5d2 100644
--- a/thunar/thunar-shortcuts-model.c
+++ b/thunar/thunar-shortcuts-model.c
@@ -194,7 +194,7 @@ struct _ThunarShortcut
   gint                 sort_id;
 
   guint                busy : 1;
-  guint                busy_pule;
+  guint                busy_pulse;
 
   GFile               *location;
   ThunarFile          *file;
@@ -708,7 +708,7 @@ thunar_shortcuts_model_get_value (GtkTreeModel *tree_model,
 
     case THUNAR_SHORTCUTS_MODEL_COLUMN_BUSY_PULSE:
       g_value_init (value, G_TYPE_UINT);
-      g_value_set_uint (value, shortcut->busy_pule);
+      g_value_set_uint (value, shortcut->busy_pulse);
       break;
 
     default:
@@ -1704,9 +1704,9 @@ thunar_shortcuts_model_busy_timeout (gpointer data)
         continue;
 
       /* loop the pulse of the shortcut */
-      shortcut->busy_pule++;
-      if (shortcut->busy_pule >= SPINNER_NUM_STEPS)
-        shortcut->busy_pule = 0;
+      shortcut->busy_pulse++;
+      if (shortcut->busy_pulse >= SPINNER_NUM_STEPS)
+        shortcut->busy_pulse = 0;
 
       /* generate an iterator for the path */
       GTK_TREE_ITER_INIT (iter, model->stamp, lp);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list