Enlightenment CVS committal

Author  : leviathan
Project : e17
Module  : proto

Dir     : e17/proto/etk-perl/etk_test


Modified Files:
        etk_test.pl 


Log Message:
- object creation is now much simpler to maintain
- Etk_Widget is handled differently now and checks for object type, this makes 
it more transparent to the perl user
- removed unused code (object cache is no more)

===================================================================
RCS file: /cvs/e/e17/proto/etk-perl/etk_test/etk_test.pl,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -3 -r1.39 -r1.40
--- etk_test.pl 1 Sep 2006 18:34:36 -0000       1.39
+++ etk_test.pl 4 Sep 2006 19:39:26 -0000       1.40
@@ -268,8 +268,8 @@
     
     $table->AttachDefault($image1, 0, 0, 0, 0);
     $table->AttachDefault($image2, 1, 1, 0, 0);
-    $table->Attach($label1, 0, 0, 1, 1, 2, 0, HExpand);
-    $table->Attach($label2, 1, 1, 1, 1, 2, 0, HExpand);    
+    $table->Attach($label1, 0, 0, 1, 1, 2, 0, TableHExpand);
+    $table->Attach($label2, 1, 1, 1, 1, 2, 0, TableHExpand);    
     
     $win->Add($table);
     $win->ShowAll();
@@ -302,7 +302,7 @@
     $button2->LabelSet("Toggle password");
     $button2->SignalConnect("clicked",
        sub {
-               $entry->PasswordSet(!$entry->PasswordGet());
+               $entry->PasswordModeSet(!$entry->PasswordModeGet());
        }
        );
     $hbox->Append($button2);



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to