Auto status change to "Under Review"
@@ -51,22 +51,23 void CatalogueEventsWidget::populateWithCatalogue(const QString &catalogue) | |||
|
51 | 51 | |
|
52 | 52 | // TODO |
|
53 | 53 | impl->addEventItem( |
|
54 |
{catalogue + " - Event 1", "12/12/2012 12:12", "12/12/2042 12: |
|
|
54 | {catalogue + " - Event 1", "12/12/2012 12:12", "12/12/2042 12:52", "cloud", "mfi/b_gse42"}, | |
|
55 | 55 | ui->tableWidget); |
|
56 | 56 | impl->addEventItem( |
|
57 |
{catalogue + " - Event 2", "12/12/2012 12:1 |
|
|
57 | {catalogue + " - Event 2", "12/12/2012 12:10", "12/12/2042 12:42", "Acloud", "mfi/b_gse1"}, | |
|
58 | 58 | ui->tableWidget); |
|
59 | 59 | impl->addEventItem( |
|
60 |
{catalogue + " - Event 3", "12/12/2012 12: |
|
|
60 | {catalogue + " - Event 3", "12/12/2012 12:22", "12/12/2042 12:12", "Gcloud", "mfi/b_gse2"}, | |
|
61 | 61 | ui->tableWidget); |
|
62 | 62 | impl->addEventItem( |
|
63 |
{catalogue + " - Event 4", "12/12/2012 12: |
|
|
63 | {catalogue + " - Event 4", "12/12/2012 12:00", "12/12/2042 12:62", "Bcloud", "mfi/b_gse3"}, | |
|
64 | 64 | ui->tableWidget); |
|
65 | 65 | } |
|
66 | 66 | |
|
67 | 67 | void CatalogueEventsWidget::CatalogueEventsWidgetPrivate::addEventItem(const QStringList &data, |
|
68 | 68 | QTableWidget *tableWidget) |
|
69 | 69 | { |
|
70 | tableWidget->setSortingEnabled(false); | |
|
70 | 71 | auto row = tableWidget->rowCount(); |
|
71 | 72 | tableWidget->setRowCount(row + 1); |
|
72 | 73 | |
@@ -75,4 +76,5 void CatalogueEventsWidget::CatalogueEventsWidgetPrivate::addEventItem(const QSt | |||
|
75 | 76 | item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable); |
|
76 | 77 | tableWidget->setItem(row, i, item); |
|
77 | 78 | } |
|
79 | tableWidget->setSortingEnabled(true); | |
|
78 | 80 | } |
General Comments 3
Status change > Approved
You need to be logged in to leave comments.
Login now