124 .format(menutext)) |
124 .format(menutext)) |
125 return |
125 return |
126 |
126 |
127 self.toolsList.addItem(menutext) |
127 self.toolsList.addItem(menutext) |
128 tool = { |
128 tool = { |
129 'menutext' : unicode(menutext), |
129 'menutext' : menutext, |
130 'icon' : unicode(icon), |
130 'icon' : icon, |
131 'executable' : executable, |
131 'executable' : executable, |
132 'arguments' : unicode(arguments), |
132 'arguments' : arguments, |
133 'redirect' : redirect, |
133 'redirect' : redirect, |
134 } |
134 } |
135 self.toollist.append(tool) |
135 self.toollist.append(tool) |
136 |
136 |
137 @pyqtSlot() |
137 @pyqtSlot() |