Project/Roo.vala
authorAlan Knowles <alan@akbkhome.com>
Thu, 29 May 2014 15:32:31 +0000 (23:32 +0800)
committerAlan Knowles <alan@akbkhome.com>
Thu, 29 May 2014 15:32:31 +0000 (23:32 +0800)
Project/Roo.vala

index c7afa21..875cb7e 100644 (file)
@@ -4,15 +4,15 @@
 
 static int id = 1;
 
-class Project.Gtk : Project.Base {
+class Project.Roo : Project.Base {
 
-    void Gtk(string path) {
+    void Roo(string path) {
         
         Base(path);
        
         // various loader methods..
         this.id = "project-gtk-%s".sprintf(id++);
-        this.xtype = "Gtk";
+        this.xtype = "Roo";
     }
 )