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