Update of /cvsroot/nhibernate/nhibernate/src/NHibernate
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9574/NHibernate
Modified Files:
NHibernate-1.1.csproj NHibernate.cs nhibernate-mapping-2.0.xsd
Log Message:
CharacterType changed to CharType (System.Character doesn't exists, but System.Char does)
Index: NHibernate-1.1.csproj
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/NHibernate-1.1.csproj,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** NHibernate-1.1.csproj 7 Apr 2004 17:13:38 -0000 1.15
--- NHibernate-1.1.csproj 8 Apr 2004 15:55:45 -0000 1.16
***************
*** 1569,1578 ****
/>
<File
! RelPath = "Type\CharacterType.cs"
SubType = "Code"
BuildAction = "Compile"
/>
<File
! RelPath = "Type\CharBooleanType.cs"
SubType = "Code"
BuildAction = "Compile"
--- 1569,1578 ----
/>
<File
! RelPath = "Type\CharBooleanType.cs"
SubType = "Code"
BuildAction = "Compile"
/>
<File
! RelPath = "Type\CharType.cs"
SubType = "Code"
BuildAction = "Compile"
Index: NHibernate.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/NHibernate.cs,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** NHibernate.cs 18 Mar 2004 19:05:41 -0000 1.13
--- NHibernate.cs 8 Apr 2004 15:55:45 -0000 1.14
***************
*** 33,37 ****
/// NHibernate character type
/// </summary>
! public static readonly NullableType Character = TypeFactory.GetCharacterType();
/// <summary>
--- 33,37 ----
/// NHibernate character type
/// </summary>
! public static readonly NullableType Character = TypeFactory.GetCharType();
/// <summary>
Index: nhibernate-mapping-2.0.xsd
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/nhibernate-mapping-2.0.xsd,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** nhibernate-mapping-2.0.xsd 9 Mar 2004 16:46:09 -0000 1.2
--- nhibernate-mapping-2.0.xsd 8 Apr 2004 15:55:46 -0000 1.3
***************
*** 245,249 ****
<xs:attribute name='name' use='required' />
<xs:attribute name='column' />
! <xs:attribute name='type' default='integer' />
</xs:complexType>
</xs:element>
--- 245,249 ----
<xs:attribute name='name' use='required' />
<xs:attribute name='column' />
! <xs:attribute name='type' default='Int32' />
</xs:complexType>
</xs:element>
|