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