42 |
42 |
43 def save(self): |
43 def save(self): |
44 """ |
44 """ |
45 Public slot to save the Debugger Ruby configuration. |
45 Public slot to save the Debugger Ruby configuration. |
46 """ |
46 """ |
47 Preferences.setDebugger("RubyInterpreter", |
47 Preferences.setDebugger( |
|
48 "RubyInterpreter", |
48 self.rubyInterpreterEdit.text()) |
49 self.rubyInterpreterEdit.text()) |
49 Preferences.setDebugger("RubyRedirect", |
50 Preferences.setDebugger( |
|
51 "RubyRedirect", |
50 self.rbRedirectCheckBox.isChecked()) |
52 self.rbRedirectCheckBox.isChecked()) |
51 |
53 |
52 @pyqtSlot() |
54 @pyqtSlot() |
53 def on_rubyInterpreterButton_clicked(self): |
55 def on_rubyInterpreterButton_clicked(self): |
54 """ |
56 """ |