Author: hisham
Date: 2005-06-14 19:23:06 -0400 (Tue, 14 Jun 2005)
New Revision: 45997

Modified:
   trunk/efl-sharp/apps/image_viewer/build.sh
   trunk/efl-sharp/apps/image_viewer/image_test_eblocks.cs
Log:
add line, build only the main thing

Modified: trunk/efl-sharp/apps/image_viewer/build.sh
===================================================================
--- trunk/efl-sharp/apps/image_viewer/build.sh  2005-06-14 21:50:34 UTC (rev 
45996)
+++ trunk/efl-sharp/apps/image_viewer/build.sh  2005-06-14 23:23:06 UTC (rev 
45997)
@@ -1,8 +1,8 @@
-mcs image_test_simple.cs 
-r:/usr/lib/mono/gac/efl-sharp/0.0.1.0__56eb9b2d0c525a1a/efl-sharp.dll \
- -out:image_test_simple.exe
+#mcs image_test_simple.cs 
-r:/usr/lib/mono/gac/efl-sharp/0.0.1.0__56eb9b2d0c525a1a/efl-sharp.dll \
+# -out:image_test_simple.exe
  
-mcs image.cs 
-r:/usr/lib/mono/gac/efl-sharp/0.0.1.0__56eb9b2d0c525a1a/efl-sharp.dll \
- -out:image.exe 
+#mcs image.cs 
-r:/usr/lib/mono/gac/efl-sharp/0.0.1.0__56eb9b2d0c525a1a/efl-sharp.dll \
+# -out:image.exe 
 
 mcs image_test_eblocks.cs 
-r:/usr/lib/mono/gac/efl-sharp/0.0.1.0__56eb9b2d0c525a1a/efl-sharp.dll \
  -out:image_test_eblocks.exe

Modified: trunk/efl-sharp/apps/image_viewer/image_test_eblocks.cs
===================================================================
--- trunk/efl-sharp/apps/image_viewer/image_test_eblocks.cs     2005-06-14 
21:50:34 UTC (rev 45996)
+++ trunk/efl-sharp/apps/image_viewer/image_test_eblocks.cs     2005-06-14 
23:23:06 UTC (rev 45997)
@@ -179,8 +179,8 @@
        Edje win_bg = (Edje)EE.DataGet("win_bg");
        win_bg.Resize(w, h);
        
-//     Enlightenment.Eblocks.Line line = 
(Enlightenment.Eblocks.Line)EE.DataGet("line");
-//     line.Resize(w, line.Geometry.H);
+       Enlightenment.Eblocks.Line line = 
(Enlightenment.Eblocks.Line)EE.DataGet("line");
+       line.Resize(w, line.Geometry.H);
        
        cont.Resize(w- 60 - 2, h - 37 - 2);
      }
@@ -230,12 +230,12 @@
        button.MouseUpEvent += new 
Enlightenment.Evas.Item.EventHandler(AppAboutButtonHandler); 
        box_menu.Add(button);   
        
-//     Enlightenment.Eblocks.Line line;
+       Enlightenment.Eblocks.Line line;
        
-//     line = new Enlightenment.Eblocks.Line(EE.Get());
-//     line.Horizontal = true;
-//     line.Resize(640, 6);
-//     box_top.Add(line);              
+       line = new Enlightenment.Eblocks.Line(EE.Get());
+       line.Horizontal = true;
+       line.Resize(640, 6);
+       box_top.Add(line);              
        
        box_top.Show();
        
@@ -268,7 +268,7 @@
        EE.DataSet("box_icons", box_icons);
        EE.DataSet("box_top", box_top);
        EE.DataSet("win_bg", win_bg);
-       //EE.DataSet("line", line);
+       EE.DataSet("line", line);
        
        WaitCallback callback = new WaitCallback(Callback);
        ThreadPool.QueueUserWorkItem(callback);

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to