~do-plugins/do-plugins/trunk

« back to all changes in this revision

Viewing changes to Tasque/src/Tasque.cs

  • Committer: Christopher James Halse Rogers
  • Date: 2013-05-06 00:12:23 UTC
  • Revision ID: raof@ubuntu.com-20130506001223-6rt6tsex1h7fe0u4
Fix missing assignment in Tasque plugin picked up by new Mono 3.0 mcs

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
                        } catch (Exception e) {
40
40
                                Log.Error ("Could not read Tasque's category: {0}", e.Message);
41
41
                                Log.Debug (e.StackTrace);
 
42
                                categories = new string[] {};
42
43
                        }
43
44
                        return categories.Select (category => new TasqueCategoryItem (category));
44
45
                }