Palete/Palete.vala
authorAlan Knowles <alan@akbkhome.com>
Sun, 1 Jun 2014 15:19:33 +0000 (23:19 +0800)
committerAlan Knowles <alan@akbkhome.com>
Sun, 1 Jun 2014 15:19:33 +0000 (23:19 +0800)
Palete/Palete.vala

index 58386ff..b7e7307 100644 (file)
@@ -7,12 +7,12 @@ namespace Palete
     }
     
 
-    static Gee.HashMap<string,Palate>? cache = null;
+    static Gee.HashMap<string,Palete>? cache = null;
     
     public static   Palete factory(string xtype)
     {
         if (this.cache == null) {
-            this.cache = new Gee.HashMap<string,Palate>();
+            this.cache = new Gee.HashMap<string,Palete>();
         }
         if (this.cache.get(xtype) != null) {
             return this.cache.get(xtype);