Switch to unified view

a/src/internfile/mh_exec.h b/src/internfile/mh_exec.h
...
...
54
    // line option.
54
    // line option.
55
    string cfgFilterOutputCharset; 
55
    string cfgFilterOutputCharset; 
56
    bool missingHelper;
56
    bool missingHelper;
57
    ////////////////
57
    ////////////////
58
58
59
    MimeHandlerExec(RclConfig *cnf, const string& mt) 
59
    MimeHandlerExec(RclConfig *cnf, const string& id) 
60
    : RecollFilter(cnf, mt), missingHelper(false) 
60
    : RecollFilter(cnf, id), missingHelper(false) 
61
    {}
61
    {}
62
    virtual bool set_document_file(const string &file_path) {
62
    virtual bool set_document_file(const string& mt, const string &file_path) {
63
    RecollFilter::set_document_file(file_path);
63
    RecollFilter::set_document_file(mt, file_path);
64
    m_fn = file_path;
64
    m_fn = file_path;
65
    m_havedoc = true;
65
    m_havedoc = true;
66
    return true;
66
    return true;
67
    }
67
    }
68
    virtual bool next_document();
68
    virtual bool next_document();