57 |
57 |
58 def getSelection(self): |
58 def getSelection(self): |
59 """ |
59 """ |
60 Public slot to retrieve the current selections. |
60 Public slot to retrieve the current selections. |
61 |
61 |
62 @return A tuple of lists of integer values. The first list is the locals variables |
62 @return A tuple of lists of integer values. The first list is the |
63 filter, the second the globals variables filter. |
63 locals variables filter, the second the globals variables filter. |
64 """ |
64 """ |
65 lList = [] |
65 lList = [] |
66 gList = [] |
66 gList = [] |
67 for i in range(self.localsList.count()): |
67 for i in range(self.localsList.count()): |
68 itm = self.localsList.item(i) |
68 itm = self.localsList.item(i) |