adding style to constructors
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23188 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -161,7 +161,7 @@ WX_COLLECTION_TYPE_INFO( wxNotebookPageInfo * , wxNotebookPageInfoList ) ;
|
|||||||
|
|
||||||
template<> void wxCollectionToVariantArray( wxNotebookPageInfoList const &theList, wxxVariantArray &value)
|
template<> void wxCollectionToVariantArray( wxNotebookPageInfoList const &theList, wxxVariantArray &value)
|
||||||
{
|
{
|
||||||
wxListCollectionToVariantArray( theList , value ) ;
|
wxListCollectionToVariantArray<wxNotebookPageInfoList::compatibility_iterator>( theList , value ) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
WX_BEGIN_PROPERTIES_TABLE(wxNotebook)
|
WX_BEGIN_PROPERTIES_TABLE(wxNotebook)
|
||||||
@@ -181,7 +181,7 @@ WX_END_PROPERTIES_TABLE()
|
|||||||
WX_BEGIN_HANDLERS_TABLE(wxNotebook)
|
WX_BEGIN_HANDLERS_TABLE(wxNotebook)
|
||||||
WX_END_HANDLERS_TABLE()
|
WX_END_HANDLERS_TABLE()
|
||||||
|
|
||||||
WX_CONSTRUCTOR_4( wxNotebook , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size )
|
WX_CONSTRUCTOR_5( wxNotebook , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size , long , WindowStyle)
|
||||||
|
|
||||||
|
|
||||||
WX_BEGIN_PROPERTIES_TABLE(wxNotebookPageInfo)
|
WX_BEGIN_PROPERTIES_TABLE(wxNotebookPageInfo)
|
||||||
|
@@ -91,7 +91,7 @@ WX_END_PROPERTIES_TABLE()
|
|||||||
WX_BEGIN_HANDLERS_TABLE(wxStaticLine)
|
WX_BEGIN_HANDLERS_TABLE(wxStaticLine)
|
||||||
WX_END_HANDLERS_TABLE()
|
WX_END_HANDLERS_TABLE()
|
||||||
|
|
||||||
WX_CONSTRUCTOR_4( wxStaticLine, wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size )
|
WX_CONSTRUCTOR_5( wxStaticLine, wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size , long , WindowStyle)
|
||||||
|
|
||||||
#else
|
#else
|
||||||
IMPLEMENT_DYNAMIC_CLASS(wxStaticLine, wxControl)
|
IMPLEMENT_DYNAMIC_CLASS(wxStaticLine, wxControl)
|
||||||
|
@@ -251,7 +251,7 @@ WX_COLLECTION_TYPE_INFO( wxWindow* , wxWindowList ) ;
|
|||||||
|
|
||||||
template<> void wxCollectionToVariantArray( wxWindowList const &theList, wxxVariantArray &value)
|
template<> void wxCollectionToVariantArray( wxWindowList const &theList, wxxVariantArray &value)
|
||||||
{
|
{
|
||||||
wxListCollectionToVariantArray( theList , value ) ;
|
wxListCollectionToVariantArray<wxWindowList::compatibility_iterator>( theList , value ) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
WX_DEFINE_FLAGS( wxWindowStyle )
|
WX_DEFINE_FLAGS( wxWindowStyle )
|
||||||
|
Reference in New Issue
Block a user