John Labenski <[EMAIL PROTECTED]> writes:

> be more confusing than anything to also add 'Cwd' to the table. Try
> the code below.
> 
> for k, v in pairs(wx.wxFileName) do print(k, v) end

the following code can be used see all the static name

for index, value in pairs(wx) do 
    if type(value) == 'table' then
        for k,v in pairs(value) do
            print(index, k, v)
        end 
    end
end

> I have fixed it so that "fn.Cwd" works now, but again, "fn:GetCwd()"
> is wrong and simply cannot be made to work reliably unless we can find
> out if '.' or ':' was used (which we can't).
This will help

> I have also rewritten some of the wxlua.html docs to clarify this,
> please see the section "C++ Classes CLASS_NAME" and below. Does this
> explain things well enough?

The documentation is very good. 

Maybe a note under "Property functions" ?
this feature does not apply to static functions. 

I believe this is the best that can be done.

Thank you

Andre

 



-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
wxlua-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wxlua-users

Reply via email to