From 55cb7b0825d916de17fa2ae8b73f1251a384261a Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 24 Dec 2018 15:17:58 +0800 Subject: [PATCH] RooProject.vala --- RooProject.vala | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/RooProject.vala b/RooProject.vala index 7c009ed4..b46ee7df 100644 --- a/RooProject.vala +++ b/RooProject.vala @@ -6,6 +6,17 @@ This a mostly a static class that manages an array of it'self... static RooProject _RooProject; public class RooProject : Object { + + public string id; // not really important that they are numbers.. + public string code; + public string name; + public string type; + + + // --- static from here on.... + + + static Gee.ArrayList _projects; static int loadcount = 0; const string roourl = "https://roojs.com/admin.php/Roo"; @@ -22,11 +33,6 @@ public class RooProject : Object return _RooProject; } - public string id; // not really important that they are numbers.. - public string code; - public string name; - public string type; - public static Gee.ArrayList projects() { -- 2.39.2