# # # patch "src/model/ChangesetModel.h" # from [96d199343b00c0f9cca4d49246392ff6cbfcab1a] # to [948faf404a0629040f7bc36706898ff9771924e9] # ============================================================ --- src/model/ChangesetModel.h 96d199343b00c0f9cca4d49246392ff6cbfcab1a +++ src/model/ChangesetModel.h 948faf404a0629040f7bc36706898ff9771924e9 @@ -134,21 +134,21 @@ private slots: // FIXME: there is no support for multiple certs with the same // key, i.e. accidential clean merges or multiple author certs - for (int i=0, j=certs->size(); iat(i).name == "author") + if (certs.at(i).name == "author") { - change.author = certs->at(i).value; + change.author = certs.at(i).value; continue; } - if (certs->at(i).name == "changelog") + if (certs.at(i).name == "changelog") { - change.changelog = certs->at(i).value; + change.changelog = certs.at(i).value; continue; } - if (certs->at(i).name == "date") + if (certs.at(i).name == "date") { - change.date = QDateTime::fromString(certs->at(i).value, "yyyy-MM-ddThh:mm:ss"); + change.date = QDateTime::fromString(certs.at(i).value, "yyyy-MM-ddThh:mm:ss"); continue; } }