Update of /cvsroot/wxlua/wxLua/docs
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv27934/wxLua/docs
Modified Files:
wxluaref.html
Log Message:
Added wxLocale::Init functions for debugging problems
Index: wxluaref.html
===================================================================
RCS file: /cvsroot/wxlua/wxLua/docs/wxluaref.html,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** wxluaref.html 26 Jun 2007 03:22:05 -0000 1.33
--- wxluaref.html 26 Jun 2007 16:15:48 -0000 1.34
***************
*** 7708,7712 ****
<br>
<font color=#009900>// call Init() if you use this ctor</font><br>
! <font color=#009900>//<a href="#wxLocale">wxLocale</a>()</font><br>
<br>
<font color=#009900>// the ctor has a side effect of changing current locale</font><br>
--- 7708,7712 ----
<br>
<font color=#009900>// call Init() if you use this ctor</font><br>
! <a href="#wxLocale">wxLocale</a>()<br>
<br>
<font color=#009900>// the ctor has a side effect of changing current locale</font><br>
***************
*** 7719,7725 ****
<font color=#009900>// the same as a function (returns true on success)</font><br>
<font color=#009900>//bool Init(const wxChar *szName, const wxChar *szShort = (const wxChar *) NULL, const wxChar *szLocale = (const wxChar *) NULL, bool bLoadDefault = true, bool bConvertEncoding = false)</font><br>
<br>
<font color=#009900>// same as second ctor (returns true on success)</font><br>
! <font color=#009900>//bool Init(int language = wxLANGUAGE_DEFAULT, int flags = wxLOCALE_LOAD_DEFAULT | wxLOCALE_CONV_ENCODING);</font><br>
<br>
<font color=#009900>// Try to get user's (or OS's) preferred language setting.</font><br>
--- 7719,7726 ----
<font color=#009900>// the same as a function (returns true on success)</font><br>
<font color=#009900>//bool Init(const wxChar *szName, const wxChar *szShort = (const wxChar *) NULL, const wxChar *szLocale = (const wxChar *) NULL, bool bLoadDefault = true, bool bConvertEncoding = false)</font><br>
+ bool Init(const <a href="#wxString">wxString</a> &szName, const <a href="#wxString">wxString</a> &szShort = "", const <a href="#wxString">wxString</a> &szLocale = "", bool bLoadDefault = true, bool bConvertEncoding = false)<br>
<br>
<font color=#009900>// same as second ctor (returns true on success)</font><br>
! bool Init(int language = wxLANGUAGE_DEFAULT, int flags = wxLOCALE_LOAD_DEFAULT | wxLOCALE_CONV_ENCODING);<br>
<br>
<font color=#009900>// Try to get user's (or OS's) preferred language setting.</font><br>
|