Oxygene version 8.3.95.2031.
I had this line:
property NewConnectionString : STring; notify;
I have the option to fix up the mismatched case, but it generated this on compile:
property NewConnectionString : StringStringString; notify;
It seemed to only have this problem in the public section of the object. Here is that line in context:
type Viewmodel = public class private fConnectionStrings : List; method GetConnectionStrings: List; public constructor; ConnectionStringsFilename : String := 'Connections.xml'; property ConnectionStrings : List read GetConnectionStrings; property SelectedConnectionString : String; notify; property NewConnectionString : String; notify; property AddConnectionStringCommand : AddConnectionStringCommand; notify; procedure AddConnectionString( parameter : Object ); procedure SaveConnectionStrings; end;