Helpviewer/Bookmarks/BookmarksManager.py

changeset 2954
bf0215fe12d1
parent 2403
e3d7a861547c
child 3002
6ffc581f00f1
diff -r 703452a2876f -r bf0215fe12d1 Helpviewer/Bookmarks/BookmarksManager.py
--- a/Helpviewer/Bookmarks/BookmarksManager.py	Sat Sep 28 19:06:25 2013 +0200
+++ b/Helpviewer/Bookmarks/BookmarksManager.py	Sat Sep 28 20:07:36 2013 +0200
@@ -112,6 +112,9 @@
     def load(self):
         """
         Public method to load the bookmarks.
+        
+        @exception RuntimeError raised to indicate an error loading the
+            bookmarks
         """
         if self.__loaded:
             return
@@ -260,7 +263,10 @@
     
     def setNodeChanged(self, node):
         """
-        Public method to signal changes of bookmarks other than title, URL or timestamp.
+        Public method to signal changes of bookmarks other than title, URL
+        or timestamp.
+        
+        @param node reference to the bookmark (BookmarkNode)
         """
         self.__saveTimer.changeOccurred()
     
@@ -269,8 +275,9 @@
         Public method to set the URL of a bookmark.
         
         @param node reference to the node to be changed (BookmarkNode)
-        @param timestampType type of the timestamp to set (BookmarkNode.TsAdded,
-            BookmarkNode.TsModified, BookmarkNode.TsVisited)
+        @param timestampType type of the timestamp to set
+            (BookmarkNode.TsAdded, BookmarkNode.TsModified,
+            BookmarkNode.TsVisited)
         @param timestamp timestamp to set (QDateTime)
         """
         if not self.__loaded:

eric ide

mercurial