Switch to unified view

a/src/qtgui/advshist.cpp b/src/qtgui/advshist.cpp
...
...
106
    } else if (qName == "T") {
106
    } else if (qName == "T") {
107
    text = base64_decode(qs2utf8s(currentText.trimmed()));
107
    text = base64_decode(qs2utf8s(currentText.trimmed()));
108
    } else if (qName == "S") {
108
    } else if (qName == "S") {
109
    slack = atoi((const char *)currentText.toAscii());
109
    slack = atoi((const char *)currentText.toAscii());
110
    } else if (qName == "C") {
110
    } else if (qName == "C") {
111
    SearchDataClauseSimple *c;
111
    SearchDataClause *c;
112
    if (whatclause == "AND" || whatclause.isEmpty()) {
112
    if (whatclause == "AND" || whatclause.isEmpty()) {
113
        c = new SearchDataClauseSimple(SCLT_AND, text, field);
113
        c = new SearchDataClauseSimple(SCLT_AND, text, field);
114
    } else if (whatclause == "OR") {
114
    } else if (whatclause == "OR") {
115
        c = new SearchDataClauseSimple(SCLT_OR, text, field);
115
        c = new SearchDataClauseSimple(SCLT_OR, text, field);
116
    } else if (whatclause == "EX") {
116
    } else if (whatclause == "EX") {