Switch to unified view

a/src/qtgui/rclmain_w.cpp b/src/qtgui/rclmain_w.cpp
...
...
1082
    if (!theconfig->getMissingHelperDesc(miss)) {
1082
    if (!theconfig->getMissingHelperDesc(miss)) {
1083
    QMessageBox::information(this, "", tr("Indexing did not run yet"));
1083
    QMessageBox::information(this, "", tr("Indexing did not run yet"));
1084
    return;
1084
    return;
1085
    }
1085
    }
1086
    QString msg = QString::fromAscii("<p>") +
1086
    QString msg = QString::fromAscii("<p>") +
1087
    tr("External applications/commands needed and not found "
1087
    tr("External applications/commands needed for your file types "
1088
           "for indexing your file types:\n\n");
1088
     "and not found, as stored by the last indexing pass in ");
1089
    msg += "(<i>";
1089
    msg += "<i>";
1090
    msg += QString::fromLocal8Bit(theconfig->getConfDir().c_str());
1090
    msg += QString::fromLocal8Bit(theconfig->getConfDir().c_str());
1091
    msg += "/missing</i>):<pre>\n";
1091
    msg += "/missing</i>:<pre>\n";
1092
    if (!miss.empty()) {
1092
    if (!miss.empty()) {
1093
    msg += QString::fromUtf8(miss.c_str());
1093
    msg += QString::fromUtf8(miss.c_str());
1094
    } else {
1094
    } else {
1095
    msg += tr("No helpers found missing");
1095
    msg += tr("No helpers found missing");
1096
    }
1096
    }