Switch to unified view

a/src/qtgui/recollmain.ui.h b/src/qtgui/recollmain.ui.h
...
...
195
    
195
    
196
    // Go to the file system to retrieve / convert the document text
196
    // Go to the file system to retrieve / convert the document text
197
    // for preview:
197
    // for preview:
198
    string fn = urltolocalpath(doc.url);
198
    string fn = urltolocalpath(doc.url);
199
    Rcl::Doc fdoc;
199
    Rcl::Doc fdoc;
200
    if (!internfile(fn, rclconfig, fdoc, tmpdir)) {
200
    FileInterner interner(fn, rclconfig, tmpdir);
201
    if (interner.internfile(fdoc, doc.ipath) != FileInterner::FIDone) {
201
    QMessageBox::warning(0, "Recoll",
202
    QMessageBox::warning(0, "Recoll",
202
                 QString("Can't turn doc into internal rep ") +
203
                 QString("Can't turn doc into internal rep ") +
203
                 doc.mimetype.c_str());
204
                 doc.mimetype.c_str());
204
    return;
205
    return;
205
    }
206
    }