comparison ui/listupdatedialog.cpp @ 221:431b058e903d

Fix typo that happend in rebase conflict resolution
author Andre Heinecke <aheinecke@intevation.de>
date Thu, 27 Mar 2014 10:23:49 +0000
parents aab742690bee
children 6a7eb102716d
comparison
equal deleted inserted replaced
220:e6c5c70a67b0 221:431b058e903d
125 installerProcess.write("-----END CERTIFICATE LIST-----\r\n"); 125 installerProcess.write("-----END CERTIFICATE LIST-----\r\n");
126 126
127 /* Items to install */ 127 /* Items to install */
128 for (int i = 0; i < mCertListWidget->count(); i++) { 128 for (int i = 0; i < mCertListWidget->count(); i++) {
129 QListWidgetItem *item = mCertListWidget->item(i); 129 QListWidgetItem *item = mCertListWidget->item(i);
130 if (item->checkState() 1= Qt::Checked && 130 if (item->checkState() != Qt::Checked &&
131 item->data(Qt::UserRole).toString().startsWith("I:")) { 131 item->data(Qt::UserRole).toString().startsWith("I:")) {
132 continue; 132 continue;
133 } 133 }
134 installerProcess.write(item->data(Qt::UserRole).toString().toLatin1()); 134 installerProcess.write(item->data(Qt::UserRole).toString().toLatin1());
135 installerProcess.write("\r\n"); 135 installerProcess.write("\r\n");

http://wald.intevation.org/projects/trustbridge/