493 |
493 |
494 def __createSummaryItem(self, col0, col1): |
494 def __createSummaryItem(self, col0, col1): |
495 """ |
495 """ |
496 Private slot to create a new item in the summary list. |
496 Private slot to create a new item in the summary list. |
497 |
497 |
498 @param col0 string for column 0 (string) |
498 @param col0 string for column 0 |
499 @param col1 string for column 1 (string) |
499 @type str |
|
500 @param col1 string for column 1 |
|
501 @type str |
500 """ |
502 """ |
501 itm = QTreeWidgetItem(self.summaryList, [col0, col1]) |
503 itm = QTreeWidgetItem(self.summaryList, [col0, col1]) |
502 itm.setTextAlignment(1, Qt.AlignmentFlag.AlignRight) |
504 itm.setTextAlignment(1, Qt.AlignmentFlag.AlignRight) |
503 |
505 |
504 def __cancel(self): |
506 def __cancel(self): |