QScintilla/SortOptionsDialog.py

changeset 3011
18292228c724
parent 2589
a51b0c113ed7
child 3057
10516539f238
child 3160
209a07d7e401
equal deleted inserted replaced
3010:befeff46ec0f 3011:18292228c724
27 27
28 def getData(self): 28 def getData(self):
29 """ 29 """
30 Public method to get the selected options. 30 Public method to get the selected options.
31 31
32 @return tuple of three flags indicating ascending order, alphanumeric sort 32 @return tuple of three flags indicating ascending order, alphanumeric
33 and case sensitivity (tuple of three boolean) 33 sort and case sensitivity (tuple of three boolean)
34 """ 34 """
35 return ( 35 return (
36 self.ascendingButton.isChecked(), 36 self.ascendingButton.isChecked(),
37 self.alnumButton.isChecked(), 37 self.alnumButton.isChecked(),
38 self.respectCaseButton.isChecked() 38 self.respectCaseButton.isChecked()

eric ide

mercurial