[tasque/transition: 155/213] [SQLite] Adjust initialized and configured values



commit 0b73a8b23eb7869d308fb88bf940fca7140b882d
Author: Antonius Riha <antoniusriha gmail com>
Date:   Sat Aug 18 19:24:45 2012 +0200

    [SQLite] Adjust initialized and configured values

 src/Addins/SqliteBackend/SqliteBackend.cs |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)
---
diff --git a/src/Addins/SqliteBackend/SqliteBackend.cs b/src/Addins/SqliteBackend/SqliteBackend.cs
index c0c3c3f..5d69a36 100644
--- a/src/Addins/SqliteBackend/SqliteBackend.cs
+++ b/src/Addins/SqliteBackend/SqliteBackend.cs
@@ -13,8 +13,6 @@ namespace Tasque.Backends.Sqlite
 		private Dictionary<int, Gtk.TreeIter> taskIters;
 		private Gtk.TreeStore taskStore;
 		private Gtk.TreeModelSort sortedTasksModel;
-		private bool initialized;
-		private bool configured = true;
 		private Database db;
 		private Gtk.ListStore categoryListStore;
 		private Gtk.TreeModelSort sortedCategoriesModel;
@@ -24,7 +22,7 @@ namespace Tasque.Backends.Sqlite
 		
 		public SqliteBackend () : base (Catalog.GetString ("Local File"))
 		{
-			initialized = false;
+			Configured = true;
 			taskIters = new Dictionary<int, Gtk.TreeIter> (); 
 			taskStore = new Gtk.TreeStore (typeof(Task));
 			



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