~ubuntu-branches/ubuntu/saucy/geary/saucy-updates

« back to all changes in this revision

Viewing changes to src/engine/app/app-conversation.vala

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2013-10-10 17:40:37 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20131010174037-5p5o4dlsoewek2kg
Tags: 0.4.0-0ubuntu1
New stable version

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
    
47
47
    // this isn't ideal but the cost of adding an email to multiple sorted sets once versus
48
48
    // the number of times they're accessed makes it worth it
49
 
    private Gee.SortedSet<Email> date_ascending = new Collection.FixedTreeSet<Email>(
 
49
    private Gee.SortedSet<Email> date_ascending = new Gee.TreeSet<Email>(
50
50
        Geary.Email.compare_date_ascending);
51
 
    private Gee.SortedSet<Email> date_descending = new Collection.FixedTreeSet<Email>(
 
51
    private Gee.SortedSet<Email> date_descending = new Gee.TreeSet<Email>(
52
52
        Geary.Email.compare_date_descending);
53
53
    
54
54
    // by storing all paths for each EmailIdentifier, can lookup without blocking