[tasque/transition: 165/213] [SQLite] Fix [B->b]ackend



commit 45d73b1c05c623c829c67285392b20df5afb2dff
Author: Antonius Riha <antoniusriha gmail com>
Date:   Sat Aug 18 21:45:23 2012 +0200

    [SQLite] Fix [B->b]ackend

 src/Addins/SqliteBackend/SqliteTask.cs |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)
---
diff --git a/src/Addins/SqliteBackend/SqliteTask.cs b/src/Addins/SqliteBackend/SqliteTask.cs
index 2fc0053..80f061b 100644
--- a/src/Addins/SqliteBackend/SqliteTask.cs
+++ b/src/Addins/SqliteBackend/SqliteTask.cs
@@ -1,9 +1,7 @@
 // SqliteTask.cs created with MonoDevelop
 // User: boyd at 8:50 PM 2/10/2008
 using System;
-using System.Collections.Generic;
 using System.Diagnostics;
-using Mono.Data.Sqlite;
 
 namespace Tasque.Backends.Sqlite
 {
@@ -16,7 +14,7 @@ namespace Tasque.Backends.Sqlite
 				throw new ArgumentNullException ("backend");
 			
 			name = backend.SanitizeText (name);
-			Backend = backend;
+			this.backend = backend;
 			Debug.WriteLine ("Creating New Task Object : {0} (id={1})", name, id);
 			var dueDate = Database.FromDateTime (DueDate);
 			var completionDate = Database.FromDateTime (CompletionDate);
@@ -32,7 +30,7 @@ namespace Tasque.Backends.Sqlite
 		                   long dueDate, long completionDate, int priority, int state)
 			: base (backend, name)
 		{
-			Backend = backend;
+			this.backend = backend;
 			this.id = id;
 			DueDate = dueDate;
 			CompletionDate = completionDate;



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