src/Builder4/About.bjs
authorAlan Knowles <alan@roojs.com>
Tue, 19 May 2015 06:30:39 +0000 (14:30 +0800)
committerAlan Knowles <alan@roojs.com>
Tue, 19 May 2015 06:30:39 +0000 (14:30 +0800)
src/Builder4/About.vala

src/Builder4/About.bjs
src/Builder4/About.vala

index 9c7826c..93b864c 100644 (file)
@@ -9,7 +9,7 @@
  "items" : [
   {
    "listeners" : {
-    "delete_event" : "(self, event) => {\n    this.el.hide();\n    return true; \n}   \n    ",
+    "delete_event" : "(self, event) => {\n    this.el.hide();\n    return true; \n}    \n    ",
     "response" : "(rid) => {\n    this.el.hide();\n}\n"
    },
    "Gtk.License license_type" : "Gtk.License.LGPL_3_0",
index 9502c0f..39607fd 100644 (file)
@@ -1,38 +1,38 @@
 /*0*/ static About  _About;
 /*1*/ 
-/*2*/ public class About : Object 
-{
-/*3*/     public Gtk.AboutDialog el;
-/*4*/     private About  _this;
-/*5*/ 
-/*6*/     public static About singleton()
-/*7*/     {
-/*8*/         if (_About == null) {
-/*9*/             _About= new About();
-/*10*/         }
-/*11*/         return _About;
-/*12*/     }
-/*13*/ 
-/*14*/         // my vars (def)
-/*15*/ 
-/*16*/     // ctor
-/*17*/     public About()
-/*18*/     {
-/*19*/         _this = this;
-/*20*/         this.el = new Gtk.AboutDialog();
-/*21*/ 
-/*22*/         // my vars (dec)
-/*23*/ 
-/*24*/         // set gobject values
-/*25*/         this.el.program_name = "app.Builder.js";
-/*26*/         this.el.license = "LGPL";
-/*27*/         this.el.authors = { "Alan Knowles" };
-/*28*/         this.el.website = "http://www.akbkhome.com/blog.php";
-/*29*/         this.el.modal = true;
-/*30*/         this.el.copyright = "LGPL";
-/*31*/         this.el.license_type = Gtk.License.LGPL_3_0;
-/*32*/ 
-/*33*/         //listeners
+/*2*/ public class About : Object
+/*3*/ {
+/*4*/     public Gtk.AboutDialog el;
+/*5*/     private About  _this;
+/*6*/ 
+/*7*/     public static About singleton()
+/*8*/     {
+/*9*/         if (_About == null) {
+/*10*/             _About= new About();
+/*11*/         }
+/*12*/         return _About;
+/*13*/     }
+/*14*/ 
+/*15*/         // my vars (def)
+/*16*/ 
+/*17*/     // ctor
+/*18*/     public About()
+/*19*/     {
+/*20*/         _this = this;
+/*21*/         this.el = new Gtk.AboutDialog();
+/*22*/ 
+/*23*/         // my vars (dec)
+/*24*/ 
+/*25*/         // set gobject values
+/*26*/         this.el.program_name = "app.Builder.js";
+/*27*/         this.el.license = "LGPL";
+/*28*/         this.el.authors = { "Alan Knowles" };
+/*29*/         this.el.website = "http://www.akbkhome.com/blog.php";
+/*30*/         this.el.modal = true;
+/*31*/         this.el.copyright = "LGPL";
+/*32*/         this.el.license_type = Gtk.License.LGPL_3_0;
+/*33*/ 
+/*34*/         //listeners
         this.el.delete_event.connect( (self, event) => {
             this.el.hide();
             return true; 
         this.el.response.connect( (rid) => {
             this.el.hide();
         });
-/*43*/     }
-/*44*/ 
-/*45*/     // user defined functions
+/*44*/     }
+/*45*/ 
+/*46*/     // user defined functions
     public    void show (Gtk.Window parent) {
         this.el.set_transient_for(parent);
         this.el.modal = true;
         this.el.show();
     }
-/*52*/ }
+/*53*/ }