1740 @pyqtSlot() |
1740 @pyqtSlot() |
1741 def __pullActTriggered(self): |
1741 def __pullActTriggered(self): |
1742 """ |
1742 """ |
1743 Private slot to pull changes from a remote repository. |
1743 Private slot to pull changes from a remote repository. |
1744 """ |
1744 """ |
1745 res = self.vcs.hgPull(self.repodir) |
1745 self.vcs.hgPull(self.repodir) |
1746 if res: |
1746 self.on_refreshButton_clicked() |
1747 self.on_refreshButton_clicked() |
|
1748 |
1747 |
1749 @pyqtSlot() |
1748 @pyqtSlot() |
1750 def __pushActTriggered(self): |
1749 def __pushActTriggered(self): |
1751 """ |
1750 """ |
1752 Private slot to push changes to a remote repository up to a selected |
1751 Private slot to push changes to a remote repository up to a selected |