diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-11-11 01:56:34 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-11-11 01:56:34 -0500 |
commit | 73e14fb7049306439a5637ff261f1370a94518e5 (patch) | |
tree | f9ef6c4782b0849bae1927f2c1ab9bbd8d97aa4d /mailnews/mime/src/mimei.h | |
parent | dc77b707f20280cd057368ca11fafc2c0bfc9414 (diff) | |
download | uxp-73e14fb7049306439a5637ff261f1370a94518e5.tar.gz |
Bug 1240290
Tag #1273
Diffstat (limited to 'mailnews/mime/src/mimei.h')
-rw-r--r-- | mailnews/mime/src/mimei.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/mailnews/mime/src/mimei.h b/mailnews/mime/src/mimei.h index a2d8332cdf..a024c45237 100644 --- a/mailnews/mime/src/mimei.h +++ b/mailnews/mime/src/mimei.h @@ -332,14 +332,6 @@ extern void mime_get_crypto_state (MimeObject *obj, bool *signed_p, bool *encrypted_p, bool *signed_ok, bool *encrypted_ok); - -/* Whether the given object has written out the HTML version of its headers - in such a way that it will have a "crypto stamp" next to the headers. If - this is true, then the child must write out its HTML slightly differently - to take this into account... - */ -extern bool mime_crypto_stamped_p(MimeObject *obj); - /* How the crypto code tells the MimeMessage object what the crypto stamp on it says. */ extern void mime_set_crypto_stamp(MimeObject *obj, @@ -352,7 +344,7 @@ public: MimeParseStateObject() {root = 0; separator_queued_p = false; separator_suppressed_p = false; first_part_written_p = false; post_header_html_run_p = false; first_data_written_p = false; - decrypted_p = false; strippingPart = false; + strippingPart = false; } MimeObject *root; /* The outermost parser object. */ @@ -376,10 +368,6 @@ public: bool first_data_written_p; /* State used for Mozilla lazy-stream- creation evilness. */ - bool decrypted_p; /* If options->dexlate_p is true, then this - will be set to indicate whether any - dexlateion did in fact occur. - */ nsTArray<nsCString> partsToStrip; /* if we're stripping parts, what parts to strip */ nsTArray<nsCString> detachToFiles; /* if we're detaching parts, where each part was detached to */ bool strippingPart; |