Fixed webkit error on message removal due to missing hash functions. Closes #4744
This commit is contained in:
parent
f2fb8f1e17
commit
a619e7350e
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue