~ubuntu-branches/ubuntu/quantal/recoll/quantal

« back to all changes in this revision

Viewing changes to internfile/mh_mail.cpp

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry
  • Date: 2012-06-08 11:46:57 UTC
  • mfrom: (1.3.10)
  • Revision ID: package-import@ubuntu.com-20120608114657-7m4yr7ugn6e5akx6
Tags: 1.17.3-1
* New upstream release.
* debian/patches/txtcsvopen.diff:
  + Added patch to fix opening of compressed text-files with gnumeric.
    (Closes: #674756)

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
    }
75
75
    delete m_stream; m_stream = 0;
76
76
    m_idx = -1;
 
77
    m_startoftext = 0;
77
78
    m_subject.erase();
78
79
    for (vector<MHMailAttach*>::iterator it = m_attachments.begin(); 
79
80
         it != m_attachments.end(); it++) {
80
81
        delete *it;
81
82
    }
82
83
    m_attachments.clear();
 
84
    m_addProcdHdrs.clear();
83
85
    RecollFilter::clear();
84
86
}
85
87