Fixed webkit error on message removal due to missing hash functions. Closes #4744

This commit is contained in:
Eric Gregory 2012-02-14 14:36:41 -08:00
parent f2fb8f1e17
commit a619e7350e

View file

@ -96,7 +96,8 @@ public class MessageViewer : WebKit.WebView {
// Maps emails to their corresponding elements.
private Gee.HashMap<Geary.EmailIdentifier, WebKit.DOM.HTMLElement> email_to_element = new
Gee.HashMap<Geary.EmailIdentifier, WebKit.DOM.HTMLElement>();
Gee.HashMap<Geary.EmailIdentifier, WebKit.DOM.HTMLElement>(Geary.Hashable.hash_func,
Geary.Equalable.equal_func);
private int width = 0;
private int height = 0;