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