63 |
63 |
64 def __resort(self): |
64 def __resort(self): |
65 """ |
65 """ |
66 Private method to resort the tree. |
66 Private method to resort the tree. |
67 """ |
67 """ |
68 self.propsList.sortItems(self.propsList.sortColumn(), |
68 self.propsList.sortItems( |
|
69 self.propsList.sortColumn(), |
69 self.propsList.header().sortIndicatorOrder()) |
70 self.propsList.header().sortIndicatorOrder()) |
70 |
71 |
71 def __resizeColumns(self): |
72 def __resizeColumns(self): |
72 """ |
73 """ |
73 Private method to resize the list columns. |
74 Private method to resize the list columns. |
126 self.process.setWorkingDirectory(dname) |
127 self.process.setWorkingDirectory(dname) |
127 |
128 |
128 self.process.start('svn', args) |
129 self.process.start('svn', args) |
129 procStarted = self.process.waitForStarted(5000) |
130 procStarted = self.process.waitForStarted(5000) |
130 if not procStarted: |
131 if not procStarted: |
131 E5MessageBox.critical(self, |
132 E5MessageBox.critical( |
|
133 self, |
132 self.trUtf8('Process Generation Error'), |
134 self.trUtf8('Process Generation Error'), |
133 self.trUtf8( |
135 self.trUtf8( |
134 'The process {0} could not be started. ' |
136 'The process {0} could not be started. ' |
135 'Ensure, that it is in the search path.' |
137 'Ensure, that it is in the search path.' |
136 ).format('svn')) |
138 ).format('svn')) |