15 class GitStashDataDialog(QDialog, Ui_GitStashDataDialog): |
15 class GitStashDataDialog(QDialog, Ui_GitStashDataDialog): |
16 """ |
16 """ |
17 Class implementing a dialog to enter the data for a stash operation. |
17 Class implementing a dialog to enter the data for a stash operation. |
18 """ |
18 """ |
19 |
19 |
|
20 # TODO: change this to an enum |
20 NoUntracked = 0 |
21 NoUntracked = 0 |
21 UntrackedOnly = 1 |
22 UntrackedOnly = 1 |
22 UntrackedAndIgnored = 2 |
23 UntrackedAndIgnored = 2 |
23 |
24 |
24 def __init__(self, parent=None): |
25 def __init__(self, parent=None): |