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

« back to all changes in this revision

Viewing changes to src/engine/util/util-collection.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:
135
135
    return hash;
136
136
}
137
137
 
138
 
/**
139
 
 * This *must* be used in place of Gee,TreeSet until the fix for this bug is widely distributed:
140
 
 * [[https://bugzilla.gnome.org/show_bug.cgi?id=695045]]
141
 
 */
142
 
public class FixedTreeSet<G> : Gee.TreeSet<G> {
143
 
    public FixedTreeSet(owned GLib.CompareDataFunc<G>? compare_func = null) {
144
 
        base ( (owned) compare_func);
145
 
    }
146
 
    
147
 
    ~FixedTreeSet() {
148
 
        clear();
149
 
    }
150
 
}
151
 
 
152
138
}