From: Jaben C. <ja...@us...> - 2007-03-14 19:20:02
|
Update of /cvsroot/yafdotnet/yafsrc/YAF.Classes/YAF.Classes.Utils/Localization In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv9033/YAF.Classes/YAF.Classes.Utils/Localization Modified Files: Localization.cs Log Message: fixes Index: Localization.cs =================================================================== RCS file: /cvsroot/yafdotnet/yafsrc/YAF.Classes/YAF.Classes.Utils/Localization/Localization.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Localization.cs 26 Jan 2007 12:08:14 -0000 1.2 --- Localization.cs 14 Mar 2007 19:19:07 -0000 1.3 *************** *** 38,42 **** } ! public yaf_Localization( string transPage ) { TransPage = transPage; --- 38,42 ---- } ! public yaf_Localization( string transPage ) : this() { TransPage = transPage; *************** *** 50,57 **** get { ! if ( m_transPage != null ) ! return m_transPage; ! throw new ApplicationException( string.Format( "Missing TransPage property for {0}", GetType() ) ); } set --- 50,57 ---- get { ! //if ( m_transPage != null ) ! return m_transPage; ! //throw new ApplicationException( string.Format( "Missing TransPage property for {0}", GetType() ) ); } set |