From: Abderrahim Kitouni Date: Fri, 19 Aug 2011 09:39:15 +0000 (+0100) Subject: Make Vala.Report.{errors,warnings} fields protected X-Git-Tag: 0.13.3~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=965782aa3d89f7ffdd0d9c7d35a5351669fbe885;p=thirdparty%2Fvala.git Make Vala.Report.{errors,warnings} fields protected --- diff --git a/vala/valareport.vala b/vala/valareport.vala index 8d3ece97c..66a1e9614 100644 --- a/vala/valareport.vala +++ b/vala/valareport.vala @@ -26,8 +26,8 @@ using GLib; * Namespace to centralize reporting warnings and errors. */ public class Vala.Report : Object { - int warnings; - int errors; + protected int warnings; + protected int errors; bool verbose_errors;