diff Feed.py @ 59:daa2731967fe

Marking all articles in a feed as read doesn't toggle any more ... it marks all articles as read.
author Dirk Olmes <dirk@xanthippe.ping.de>
date Fri, 23 Jul 2010 17:29:22 +0200
parents c82f5538733c
children db35ab7753f0
line wrap: on
line diff
--- a/Feed.py	Fri Jul 23 17:24:32 2010 +0200
+++ b/Feed.py	Fri Jul 23 17:29:22 2010 +0200
@@ -30,6 +30,6 @@
         delta = timedelta(minutes=self.update_interval)
         self.next_update = datetime.now() + delta
 
-    def toggleRead(self):
+    def markAllEntriesRead(self):
         for entry in self.entries:
-            entry.toggleRead()
\ No newline at end of file
+            entry.markRead()
\ No newline at end of file