On Dec 17, 2007 11:03 AM, Andre <[EMAIL PROTECTED]> wrote:
> Just got a current version of both widgets and wxlua

I think your wxWidgets version is < 2.8.5, current is 2.8.7.

> A few minor problems
>
> in function
> static int LUACALL wxLua_wxAuiTabCtrl_IsDragging(lua_State *L)
>
> bool returns = (self->IsDragging());
> failed to compile IsDragging was not found by the compiler.

The wxWidgets header for 2.8.7 has this is include/wx/aui/auibook.h,
so it should be in versions >= 2.8.5 unless you've lowered your ABI
version for some reason. I've put in a min version check for 2.8.5
though.

#if wxABI_VERSION >= 20805
    bool IsDragging() const { return m_is_dragging; }
#endif

> also
>
>         { "wxAUI_NB_MIDDLE_CLICK_CLOSE", wxAUI_NB_MIDDLE_CLICK_CLOSE },
>
> wxAUI_NB_MIDDLE_CLICK_CLOSE  seems to be missing.

It's in the CVS version soon to be the next release.

Thanks,
    John

-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services
for just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
wxlua-users mailing list
wxlua-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wxlua-users

Reply via email to