Switch to unified view

a/src/internfile/mh_text.cpp b/src/internfile/mh_text.cpp
1
#ifndef lint
1
#ifndef lint
2
static char rcsid[] = "@(#$Id: mh_text.cpp,v 1.4 2006-01-23 13:32:28 dockes Exp $ (C) 2005 J.F.Dockes";
2
static char rcsid[] = "@(#$Id: mh_text.cpp,v 1.5 2006-03-20 15:14:08 dockes Exp $ (C) 2005 J.F.Dockes";
3
#endif
3
#endif
4
/*
4
/*
5
 *   This program is free software; you can redistribute it and/or modify
5
 *   This program is free software; you can redistribute it and/or modify
6
 *   it under the terms of the GNU General Public License as published by
6
 *   it under the terms of the GNU General Public License as published by
7
 *   the Free Software Foundation; either version 2 of the License, or
7
 *   the Free Software Foundation; either version 2 of the License, or
...
...
56
        "for charset [%s]\n", charset.c_str()));
56
        "for charset [%s]\n", charset.c_str()));
57
    otext.erase();
57
    otext.erase();
58
    return MimeHandler::MHError;
58
    return MimeHandler::MHError;
59
    }
59
    }
60
60
61
    Rcl::Doc out;
62
    out.origcharset = charset;
61
    docout.origcharset = charset;
63
    out.text = utf8;
62
    docout.text = utf8;
64
    docout = out;
65
    return MimeHandler::MHDone;
63
    return MimeHandler::MHDone;
66
}
64
}