[Laszlo-checkins] r12031 - openlaszlo/trunk/lps/components/debugger

bargull@openlaszlo.org bargull at openlaszlo.org
Tue Dec 9 09:57:02 PST 2008


Author: bargull
Date: 2008-12-09 09:56:58 -0800 (Tue, 09 Dec 2008)
New Revision: 12031

Modified:
   openlaszlo/trunk/lps/components/debugger/debugger.lzx
   openlaszlo/trunk/lps/components/debugger/newcontent.lzx
Log:
Change 20081209-bargull-pHq by bargull at dell--p4--2-53 on 2008-12-09 18:54:17
    in /home/Admin/src/svn/openlaszlo/trunk
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: fix deprecate warning

New Features:

Bugs Fixed: LPP-7444

Technical Reviewer: (pending)
QA Reviewer: (pending)
Doc Reviewer: (pending)

Documentation:

Release Notes:

Details:
    

Tests:



Modified: openlaszlo/trunk/lps/components/debugger/debugger.lzx
===================================================================
--- openlaszlo/trunk/lps/components/debugger/debugger.lzx	2008-12-09 17:56:19 UTC (rev 12030)
+++ openlaszlo/trunk/lps/components/debugger/debugger.lzx	2008-12-09 17:56:58 UTC (rev 12031)
@@ -689,9 +689,9 @@
          // set the view multiline=true
 
       if (this.bottom.center.input.height > this.smallInputAreaHeight) {
-        this.bottom.center.input.setMultiline(true);
+        this.bottom.center.input.setAttribute("multiline", true);
       } else {
-        this.bottom.center.input.setMultiline(false);
+        this.bottom.center.input.setAttribute("multiline", false);
       }
       this.middle.content.computeVisibleRegion();
       ]]>
@@ -724,7 +724,7 @@
 <method name="doSingleLine">
              this.upButton.setAttribute('visible', true); 
              this.downButton.setAttribute('visible', false)
-             this.parent.center.input.setMultiline(false);
+             this.parent.center.input.setAttribute("multiline", false);
              classroot.savedInputAreaHeight = Math.max(53, this.parent.height);
              this.parent.animate("height",classroot.smallInputAreaHeight,333,false);
            </method>
@@ -736,7 +736,7 @@
              var delta = classroot.savedInputAreaHeight - parent.height;
              delta = Math.min(classroot.middle.height - (classroot.lineheight * 2) , delta);
              if (delta > 0) {
-                 this.parent.center.input.setMultiline(true);
+                 this.parent.center.input.setAttribute("multiline", true);
                  // Squish the center content area up
                  this.parent.animate("height",classroot.savedInputAreaHeight,333,false);
              }

Modified: openlaszlo/trunk/lps/components/debugger/newcontent.lzx
===================================================================
--- openlaszlo/trunk/lps/components/debugger/newcontent.lzx	2008-12-09 17:56:19 UTC (rev 12030)
+++ openlaszlo/trunk/lps/components/debugger/newcontent.lzx	2008-12-09 17:56:58 UTC (rev 12031)
@@ -190,7 +190,7 @@
      <attribute name="autoscroll" type="expression" value="true" />
 
 <method name="setWrapLines" args="val">
-        this.textpane.setMultiline(val);
+        this.textpane.setAttribute("multiline", val);
      </method>
 
      <text name="textpane"



More information about the Laszlo-checkins mailing list