fixed indentation issues and mix of tabs and spaces.

svn: r11943
This commit is contained in:
Raphael Ackermann
2009-02-09 23:37:40 +00:00
parent 7f1cbf9063
commit baef4d76a4
18 changed files with 30 additions and 30 deletions

View File

@@ -41,7 +41,7 @@ class FastFilterModel(gtk.GenericTreeModel):
def __init__(self,db,data_filter):
gtk.GenericTreeModel.__init__(self)
self._db = db
self._db = db
self._data_filter = data_filter
self._fetch_func = self._get_fetch_func(db)

View File

@@ -41,9 +41,9 @@ class FastModel(gtk.GenericTreeModel):
def __init__(self,db):
gtk.GenericTreeModel.__init__(self)
self._db = db
self._table = self._get_table(db)
self._cursor = self._get_cursor(db)
self._db = db
self._table = self._get_table(db)
self._cursor = self._get_cursor(db)
self._object_class = self._get_object_class(db)
self._length = self._get_length(db)