[banshee] [Services] Improve variable name



commit ba4e735bd0b69953c9acba18096c5e83a55bab47
Author: Gabriel Burt <gabriel burt gmail com>
Date:   Fri May 14 14:22:00 2010 -0700

    [Services] Improve variable name

 .../Banshee.Services/Banshee.Sources/Source.cs     |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/Core/Banshee.Services/Banshee.Sources/Source.cs b/src/Core/Banshee.Services/Banshee.Sources/Source.cs
index 6705973..15d8b4e 100644
--- a/src/Core/Banshee.Services/Banshee.Sources/Source.cs
+++ b/src/Core/Banshee.Services/Banshee.Sources/Source.cs
@@ -302,9 +302,9 @@ namespace Banshee.Sources
             SortChildSources ();
         }
 
-        public T GetProperty<T> (string name, bool propagate)
+        public T GetProperty<T> (string name, bool inherited)
         {
-            return propagate ? GetInheritedProperty<T> (name) : Properties.Get<T> (name);
+            return inherited ? GetInheritedProperty<T> (name) : Properties.Get<T> (name);
         }
 
         public T GetInheritedProperty<T> (string name)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]