35 |
36 |
36 def getData(self): |
37 def getData(self): |
37 """ |
38 """ |
38 Public method to get the user data. |
39 Public method to get the user data. |
39 |
40 |
40 @return tuple containing the message (string), a flag indicating to |
41 @return tuple containing the message, a flag indicating to keep changes |
41 keep changes in the staging area (boolean) and an indication to |
42 in the staging area and an indication to stash untracked and/or |
42 stash untracked and/or ignored files (integer) |
43 ignored files |
|
44 @rtype tuple of (str, bool, int) |
43 """ |
45 """ |
44 if self.noneRadioButton.isChecked(): |
46 if self.noneRadioButton.isChecked(): |
45 untracked = self.NoUntracked |
47 untracked = self.NoUntracked |
46 elif self.untrackedRadioButton.isChecked(): |
48 elif self.untrackedRadioButton.isChecked(): |
47 untracked = self.UntrackedOnly |
49 untracked = self.UntrackedOnly |