164 else: |
164 else: |
165 return self.localsVarFilter[:] |
165 return self.localsVarFilter[:] |
166 |
166 |
167 def initActions(self): |
167 def initActions(self): |
168 """ |
168 """ |
169 Method defining the user interface actions. |
169 Public method defining the user interface actions. |
170 """ |
170 """ |
171 self.actions = [] |
171 self.actions = [] |
172 |
172 |
173 self.runAct = E5Action( |
173 self.runAct = E5Action( |
174 self.tr('Run Script'), |
174 self.tr('Run Script'), |
1292 model.setBreakPointByIndex(index, fn, line, |
1292 model.setBreakPointByIndex(index, fn, line, |
1293 (cond, temp, enabled, count)) |
1293 (cond, temp, enabled, count)) |
1294 |
1294 |
1295 def __clientWatchConditionError(self, cond): |
1295 def __clientWatchConditionError(self, cond): |
1296 """ |
1296 """ |
1297 Public method to handle a expression error of a watch expression. |
1297 Private method to handle a expression error of a watch expression. |
1298 |
1298 |
1299 Note: This can only happen for normal watch expressions |
1299 Note: This can only happen for normal watch expressions |
1300 |
1300 |
1301 @param cond expression of the watch expression (string) |
1301 @param cond expression of the watch expression (string) |
1302 """ |
1302 """ |