[Mono-bugs] [Bug 61855][Nor] Changed - Bug running aplicattion with
aditional info
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Sun May 22 19:37:35 EDT 2005
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by bmaurer at users.sf.net.
http://bugzilla.ximian.com/show_bug.cgi?id=61855
--- shadow/61855 2004-08-27 17:11:11.000000000 -0400
+++ shadow/61855.tmp.13791 2005-05-22 19:37:35.000000000 -0400
@@ -1,13 +1,13 @@
Bug#: 61855
Product: Mono: Class Libraries
Version: unspecified
OS: SUSE 9.0
OS Details:
-Status: NEW
-Resolution:
+Status: RESOLVED
+Resolution: FIXED
Severity: Unknown
Priority: Normal
Component: System
AssignedTo: mono-bugs at ximian.com
ReportedBy: jonathan at staffinformatica.com.br
QAContact: mono-bugs at ximian.com
@@ -563,6 +563,62 @@
------- Additional Comments From gonzalo at ximian.com 2004-07-26 09:22 -------
It would help if you attach the simplest test case you can get that
reproduces the bug.
+
+------- Additional Comments From bmaurer at users.sf.net 2005-05-22 19:37 -------
+This patch fixed it I think:
+
+2004-09-01 Marek Safar <marek.safar at seznam.cz>
+
+ * CSharpCodeGenerator.cs : New private member dont_write_semicolon.
+ Used for one row "for" syntax.
+ (GenerateEvent): Added attributes output.
+ (GenerateField): Don't output access and scope modifier for enum field.
+ (GenerateConstructor): Added attributes output.
+ (QuoteSnippetString): Fixed mixed case type conversion. Replace '+'
+ with '.' for nested classes.
+
+I tried doing a little patch to the custom control in demos:
+Index: tabcontrol.aspx
+===================================================================
+--- tabcontrol.aspx (revision 44210)
++++ tabcontrol.aspx (working copy)
+@@ -160,7 +160,7 @@
+ </tbody>
+ </table>
+ <hr>
+-<Mono:Tabs runat="server" id="tabs"/>
++<Mono:Tabs runat="server" id="tabs" MyProp="A"/>
+ </form>
+ </body>
+ </html>
+Index: tabcontrol.cs
+===================================================================
+--- tabcontrol.cs (revision 44210)
++++ tabcontrol.cs (working copy)
+@@ -19,6 +19,9 @@
+ {
+ public class Tabs : UserControl
+ {
++ public enum MyEnum {
++ A, B, C
++ }
+ Hashtable tabData;
+ ArrayList titles;
+
+@@ -250,6 +253,11 @@
+ ViewState ["TabBackColor"] = value;
+ }
+ }
++
++ public MyEnum MyProp {
++ get { return MyEnum.A; }
++ set {}
++ }
+ }
+ }
+
+
+this works fine for me from SVN, so I think the issue is fixed.
More information about the mono-bugs
mailing list