30 """ |
30 """ |
31 Public method to rebase changesets to a different branch. |
31 Public method to rebase changesets to a different branch. |
32 |
32 |
33 @return flag indicating that the project should be reread (boolean) |
33 @return flag indicating that the project should be reread (boolean) |
34 """ |
34 """ |
35 res = False |
|
36 from .HgRebaseDialog import HgRebaseDialog |
35 from .HgRebaseDialog import HgRebaseDialog |
37 |
36 |
|
37 res = False |
38 dlg = HgRebaseDialog( |
38 dlg = HgRebaseDialog( |
39 self.vcs.hgGetTagsList(), |
39 self.vcs.hgGetTagsList(), |
40 self.vcs.hgGetBranchesList(), |
40 self.vcs.hgGetBranchesList(), |
41 self.vcs.hgGetBookmarksList(), |
41 self.vcs.hgGetBookmarksList(), |
42 self.vcs.version, |
42 self.vcs.version, |