Revision: 4427
          http://vexi.svn.sourceforge.net/vexi/?rev=4427&view=rev
Author:   clrg
Date:     2012-07-23 00:36:30 +0000 (Mon, 23 Jul 2012)
Log Message:
-----------
Avoid cyclic put when v==null (text reads "")

Modified Paths:
--------------
    trunk/org.vexi-vexi.widgets/src_main/org/vexi/lib/widget/textfield.t

Modified: trunk/org.vexi-vexi.widgets/src_main/org/vexi/lib/widget/textfield.t
===================================================================
--- trunk/org.vexi-vexi.widgets/src_main/org/vexi/lib/widget/textfield.t        
2012-07-18 01:07:32 UTC (rev 4426)
+++ trunk/org.vexi-vexi.widgets/src_main/org/vexi/lib/widget/textfield.t        
2012-07-23 00:36:30 UTC (rev 4427)
@@ -180,7 +180,7 @@
             trapee.text = v;
         } else
         if (trapee.text != v) {
-            trapee.text = v;
+            trapee.text = v==null?"":v;
             return;
         }
     }

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Vexi-svn mailing list
Vexi-svn@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vexi-svn

Reply via email to