Builder3/Window.js
authorAlan Knowles <alan@akbkhome.com>
Mon, 2 Jul 2012 13:22:24 +0000 (21:22 +0800)
committerAlan Knowles <alan@akbkhome.com>
Mon, 2 Jul 2012 13:22:24 +0000 (21:22 +0800)
Builder3/Window.js

index 618619e..0430b01 100644 (file)
@@ -632,7 +632,7 @@ Window=new XObject({
                                                                                 w.drag_get_data
                                                                                 (          /* will receive 'drag-data-received' signal */
                                                                                         ctx,        /* represents the current state of the DnD */
-                                                                                        imports.Globals.atoms["STRING"],    /* the target type we want */
+                                                                                        Globals.atoms["STRING"],    /* the target type we want */
                                                                                         time            /* time stamp */
                                                                                 );
                                                                                 
@@ -799,7 +799,7 @@ Window=new XObject({
                                                                                Gdk.DragAction.COPY   | Gdk.DragAction.MOVE           /* what to do with data after dropped */
                                                                        );
                                                                      
-                                                                       this.el.drag_source_set_target_list(imports.Globals.targetList);
+                                                                       this.el.drag_source_set_target_list(Globals.targetList);
                                                                     
                                                                        this.el.drag_source_add_text_targets(); 
                                                                        this.el.drag_dest_set
@@ -810,7 +810,7 @@ Window=new XObject({
                                                                            Gdk.DragAction.COPY   | Gdk.DragAction.MOVE       /* what to do with data after dropped */
                                                                        );
                                                                     
-                                                                       this.el.drag_dest_set_target_list(  imports.Globals.targetList);
+                                                                       this.el.drag_dest_set_target_list(  Globals.targetList);
                                                                        this.el.drag_dest_add_text_targets( );
                                                                     },
                                                                     selectNode : function(treepath_str) {
@@ -3100,7 +3100,7 @@ Window=new XObject({
                                                                                                 w.drag_get_data
                                                                                                 (          /* will receive 'drag-data-received' signal */
                                                                                                         ctx,        /* represents the current state of the DnD */
-                                                                                                        imports.Globals.atoms["STRING"],    /* the target type we want */
+                                                                                                        Globals.atoms["STRING"],    /* the target type we want */
                                                                                                         time            /* time stamp */
                                                                                                 );
                                                                                                                 
@@ -3194,7 +3194,7 @@ Window=new XObject({
                                                                                         );
                                                                                                                 
                                                                                        // print("RB: TARGETS : " + LeftTree.atoms["STRING"]);
-                                                                                        this.el.drag_dest_set_target_list(  imports.Globals.targetList);
+                                                                                        this.el.drag_dest_set_target_list(  Globals.targetList);
                                                                                         
                                                                                         GLib.timeout_add_seconds(0, 1, function() {
                                                                                             //    print("run refresh?");
@@ -3871,7 +3871,7 @@ Window=new XObject({
                                                                                                                 self.drag_get_data
                                                                                                                 (  /* will receive 'drag-data-received' signal */
                                                                                                                         ctx,        /* represents the current state of the this.gDnD */
-                                                                                                                        imports.Globals.atoms["STRING"],    /* the target type we want */
+                                                                                                                        Globals.atoms["STRING"],    /* the target type we want */
                                                                                                                         time            /* time stamp */
                                                                                                                 );