Revision: 1766
          http://svn.sourceforge.net/vexi/?rev=1766&view=rev
Author:   clrg
Date:     2007-03-29 11:20:38 -0700 (Thu, 29 Mar 2007)

Log Message:
-----------
Ignore rows/cols when warning about overriding redirects (common override)

Modified Paths:
--------------
    widgets/trunk/org.vexi.widgets/src/vexi/util/redirect.t

Modified: widgets/trunk/org.vexi.widgets/src/vexi/util/redirect.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/util/redirect.t     2007-03-29 
18:20:13 UTC (rev 1765)
+++ widgets/trunk/org.vexi.widgets/src/vexi/util/redirect.t     2007-03-29 
18:20:38 UTC (rev 1766)
@@ -46,7 +46,9 @@
         // create box reference from b1 to b2
         if (b1.redirect_to and b1.redirect_to[p])
         {
-            vexi.log.warn("Redirected property '"+p+"' more than once from a 
particular box");
+            // do not warn about cols/rows
+            if (p != "cols" and p != "rows")
+                vexi.log.warn("Redirected property '"+p+"' more than once from 
a particular box");
             static.drop(b1, p);
         }
         if (!b1.redirect_to) b1.redirect_to = {};


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

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Vexi-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/vexi-svn

Reply via email to