Switch to unified view

a/src/internfile/mh_unknown.h b/src/internfile/mh_unknown.h
...
...
26
 * Handler for files with no content handler: does nothing.
26
 * Handler for files with no content handler: does nothing.
27
 *
27
 *
28
 */
28
 */
29
class MimeHandlerUnknown : public RecollFilter {
29
class MimeHandlerUnknown : public RecollFilter {
30
 public:
30
 public:
31
    MimeHandlerUnknown(const string& mt) : RecollFilter(mt) {}
31
    MimeHandlerUnknown(RclConfig *cnf, const string& mt) 
32
  : RecollFilter(cnf, mt) {}
32
    virtual ~MimeHandlerUnknown() {}
33
    virtual ~MimeHandlerUnknown() {}
33
    virtual bool set_document_string(const string& fn) {
34
    virtual bool set_document_string(const string& fn) {
34
    RecollFilter::set_document_file(fn);
35
    RecollFilter::set_document_file(fn);
35
    return m_havedoc = true;
36
    return m_havedoc = true;
36
    }
37
    }