QScintilla/SortOptionsDialog.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2677
3d4277929fb3
parent 3011
18292228c724
child 3145
a9de05d4a22f
equal deleted inserted replaced
3056:9986ec0e559a 3057:10516539f238
29 29
30 def getData(self): 30 def getData(self):
31 """ 31 """
32 Public method to get the selected options. 32 Public method to get the selected options.
33 33
34 @return tuple of three flags indicating ascending order, alphanumeric sort 34 @return tuple of three flags indicating ascending order, alphanumeric
35 and case sensitivity (tuple of three boolean) 35 sort and case sensitivity (tuple of three boolean)
36 """ 36 """
37 return ( 37 return (
38 self.ascendingButton.isChecked(), 38 self.ascendingButton.isChecked(),
39 self.alnumButton.isChecked(), 39 self.alnumButton.isChecked(),
40 self.respectCaseButton.isChecked() 40 self.respectCaseButton.isChecked()

eric ide

mercurial