* Fixed a bug when resetting the task list introduced when breaking the item list...
[doneit] / src / doneit_glade.py
index 31f2bfe..3e3a121 100755 (executable)
@@ -6,14 +6,12 @@
                Using new api widgets people are developing)
                Integrate GPS w/ fallback to default location
                Use locations for mapping
-       Agenda view
-               Grid of days
-               Using an adjustable version of the following RTM quiery 'dueBefore:Today OR dueWithin:"1 week of today" OR (priority:3 AND dueWithin"2 weeks of today") OR (priority:2 AND dueWithin"3 weeks of today") OR (priority:1 AND dueWithin"4 weeks of today")')
        Quick search (OR within a property type, and between property types)
                Drop down for multi selecting priority
                Drop down for multi selecting tags
                Drop down for multi selecting locations
                Calendar selector for choosing due date range
+@todo Add logging support to make debugging random user issues a lot easier
 """
 
 from __future__ import with_statement
@@ -157,7 +155,7 @@ class DoneIt(object):
                # Setup costly backends
                import rtm_view
                with gtk_toolbox.gtk_lock():
-                       rtmView = rtm_view.GtkRtMilk(self._widgetTree)
+                       rtmView = rtm_view.GtkRtMilk(self._widgetTree, self.__errorDisplay)
                self._todoUIs[rtmView.name()] = rtmView
                self._defaultUIName = rtmView.name()