[tasque/transition: 209/213] [Tasque.Gtk] Formatting



commit df80734382a2f44c91a11228d9ebffc925a17bdc
Author: Antonius Riha <antoniusriha gmail com>
Date:   Mon Aug 20 09:27:34 2012 +0200

    [Tasque.Gtk] Formatting

 src/Tasque.Gtk/TaskGroup.cs |   13 +++++--------
 1 files changed, 5 insertions(+), 8 deletions(-)
---
diff --git a/src/Tasque.Gtk/TaskGroup.cs b/src/Tasque.Gtk/TaskGroup.cs
index 5d26f80..ee14eb6 100644
--- a/src/Tasque.Gtk/TaskGroup.cs
+++ b/src/Tasque.Gtk/TaskGroup.cs
@@ -26,10 +26,9 @@
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
 using System;
-using System.Collections;
+using System.Collections.Generic;
 using System.Linq;
 using Gtk;
-using System.Collections.Generic;
 
 namespace Tasque
 {
@@ -62,9 +61,8 @@ namespace Tasque
 
 			filteredTasks = CreateModel (rangeStart, rangeEnd, tasks);
 
-			filteredTasks.ShowCompletedTasks = 
-				GtkApplication.Instance.Preferences.GetBool (
-					Preferences.ShowCompletedTasksKey);
+			filteredTasks.ShowCompletedTasks = GtkApplication.Instance.Preferences.GetBool (
+				Preferences.ShowCompletedTasksKey);
 			GtkApplication.Instance.Preferences.SettingChanged += OnSettingChanged;
 			
 			// TODO: Add something to watch events so that the group will
@@ -351,9 +349,8 @@ namespace Tasque
 			header.Markup = GetHeaderMarkup (DisplayName);
 		}
 
-		protected virtual TaskGroupModel CreateModel (DateTime rangeStart,
-		                                               DateTime rangeEnd,
-		                                               IEnumerable<Task> tasks)
+		protected virtual TaskGroupModel CreateModel (DateTime rangeStart, DateTime rangeEnd,
+		                                              IEnumerable<Task> tasks)
 		{
 			return new TaskGroupModel (rangeStart, rangeEnd, tasks);
 		}



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