--- a/Plugins/ViewManagerPlugins/Listspace/Listspace.py Sun Sep 29 15:23:19 2013 +0200 +++ b/Plugins/ViewManagerPlugins/Listspace/Listspace.py Sun Sep 29 15:54:10 2013 +0200 @@ -184,8 +184,6 @@ Constructor @param parent parent widget (QWidget) - @param ui reference to the main user interface - @param dbs reference to the debug server object """ self.stacks = [] @@ -250,7 +248,10 @@ def __showMenu(self, point): """ - Private slot to handle the customContextMenuRequested signal of the viewlist. + Private slot to handle the customContextMenuRequested signal of + the viewlist. + + @param point position to open the menu at (QPoint) """ if self.editors: itm = self.viewlist.itemAt(point) @@ -310,7 +311,7 @@ def _removeAllViews(self): """ - Protected method to remove all views (i.e. windows) + Protected method to remove all views (i.e. windows). """ self.viewlist.clear() for win in self.editors: @@ -322,7 +323,7 @@ def _removeView(self, win): """ - Protected method to remove a view (i.e. window) + Protected method to remove a view (i.e. window). @param win editor window to be removed """ @@ -359,7 +360,7 @@ def _addView(self, win, fn=None, noName=""): """ - Protected method to add a view (i.e. window) + Protected method to add a view (i.e. window). @param win editor assembly to be added @param fn filename of this editor (string) @@ -422,7 +423,7 @@ def _showView(self, win, fn=None): """ - Protected method to show a view (i.e. window) + Protected method to show a view (i.e. window). @param win editor assembly to be shown @param fn filename of this editor (string)