]> git.pld-linux.org Git - packages/synapse.git/blob - synapse-types.patch
upstream revisions 652,653 to fix type compatibility; rel 2
[packages/synapse.git] / synapse-types.patch
1 === modified file 'src/plugins/desktop-file-plugin.vala'
2 --- src/plugins/desktop-file-plugin.vala        2015-11-30 22:01:12 +0000
3 +++ src/plugins/desktop-file-plugin.vala        2016-09-29 17:57:47 +0000
4 @@ -83,8 +83,8 @@
5      construct
6      {
7        desktop_files = new Gee.ArrayList<DesktopFileMatch> ();
8 -      mimetype_map = new Gee.HashMap<string, OpenWithAction> ();
9 -      actions_map = new Gee.HashMap<string, OpenAppAction> ();
10 +      mimetype_map = new Gee.HashMap<string, Gee.List<OpenWithAction>> ();
11 +      actions_map = new Gee.HashMap<string, Gee.List<OpenAppAction>> ();
12  
13        var dfs = DesktopFileService.get_default ();
14        dfs.reload_started.connect (() => {
15
16 === modified file 'src/plugins/hybrid-search-plugin.vala'
17 --- src/plugins/hybrid-search-plugin.vala       2014-07-10 11:39:28 +0000
18 +++ src/plugins/hybrid-search-plugin.vala       2016-09-29 17:57:47 +0000
19 @@ -74,7 +74,7 @@
20      construct
21      {
22        directory_hits = new Gee.HashMap<string, int> ();
23 -      directory_contents = new Gee.HashMap<string, Utils.FileInfo?> ();
24 +      directory_contents = new Gee.HashMap<string, DirectoryInfo> ();
25  
26        analyze_recent_documents.begin ();
27      }
28
29 === modified file 'src/core/result-set.vala'
30 --- src/core/result-set.vala    2014-07-10 14:05:57 +0000
31 +++ src/core/result-set.vala    2016-10-06 09:34:42 +0000
32 @@ -57,7 +57,7 @@
33        owned get { return matches.entries; }
34      }
35  
36 -    public Gee.Iterator<Gee.Map.Entry <Match, int>?> iterator ()
37 +    public Gee.Iterator<Gee.Map.Entry <Match, int>> iterator ()
38      {
39        return matches.iterator ();
40      }
41
This page took 0.101834 seconds and 4 git commands to generate.