Preferences/ConfigurationPages/DebuggerRubyPage.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 3010
befeff46ec0f
child 3058
0a02c433f52d
equal deleted inserted replaced
3056:9986ec0e559a 3057:10516539f238
31 """ 31 """
32 super(DebuggerRubyPage, self).__init__() 32 super(DebuggerRubyPage, self).__init__()
33 self.setupUi(self) 33 self.setupUi(self)
34 self.setObjectName("DebuggerRubyPage") 34 self.setObjectName("DebuggerRubyPage")
35 35
36 self.rubyInterpreterCompleter = E5FileCompleter(self.rubyInterpreterEdit) 36 self.rubyInterpreterCompleter = E5FileCompleter(
37 self.rubyInterpreterEdit)
37 38
38 # set initial values 39 # set initial values
39 self.rubyInterpreterEdit.setText( 40 self.rubyInterpreterEdit.setText(
40 Preferences.getDebugger("RubyInterpreter")) 41 Preferences.getDebugger("RubyInterpreter"))
41 self.rbRedirectCheckBox.setChecked( 42 self.rbRedirectCheckBox.setChecked(
68 def create(dlg): 69 def create(dlg):
69 """ 70 """
70 Module function to create the configuration page. 71 Module function to create the configuration page.
71 72
72 @param dlg reference to the configuration dialog 73 @param dlg reference to the configuration dialog
74 @return reference to the instantiated page (ConfigurationPageBase)
73 """ 75 """
74 page = DebuggerRubyPage() 76 page = DebuggerRubyPage()
75 return page 77 return page

eric ide

mercurial