]> git.saurik.com Git - wxWidgets.git/commitdiff
adding style to constructors
authorStefan Csomor <csomor@advancedconcepts.ch>
Sun, 24 Aug 2003 23:42:33 +0000 (23:42 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sun, 24 Aug 2003 23:42:33 +0000 (23:42 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23188 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/notebook.cpp
src/msw/statline.cpp
src/msw/window.cpp

index 7c60e08a12a042085964e0bed69ad8e5dc135a15..7e4f7772c682a6771100af79d9573b2877526747 100644 (file)
@@ -161,7 +161,7 @@ WX_COLLECTION_TYPE_INFO( wxNotebookPageInfo * , wxNotebookPageInfoList ) ;
 
 template<> void wxCollectionToVariantArray( wxNotebookPageInfoList const &theList, wxxVariantArray &value)
 {
-    wxListCollectionToVariantArray( theList , value ) ;
+    wxListCollectionToVariantArray<wxNotebookPageInfoList::compatibility_iterator>( theList , value ) ;
 }
 
 WX_BEGIN_PROPERTIES_TABLE(wxNotebook)
@@ -181,7 +181,7 @@ WX_END_PROPERTIES_TABLE()
 WX_BEGIN_HANDLERS_TABLE(wxNotebook)
 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)
index 34d472c7f010d9fbab904ea6468a3e6f9a463a19..b26b7b3b5ea3d71f240071f6071ddbf2b69ab40e 100644 (file)
@@ -91,7 +91,7 @@ WX_END_PROPERTIES_TABLE()
 WX_BEGIN_HANDLERS_TABLE(wxStaticLine)
 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
 IMPLEMENT_DYNAMIC_CLASS(wxStaticLine, wxControl)
index 808a3d3e5c0cb6705c39e19fead816cc079fbc73..3e34e88e6d58e096d2630ce03e1fc970bca5d060 100644 (file)
@@ -251,7 +251,7 @@ WX_COLLECTION_TYPE_INFO( wxWindow* , wxWindowList ) ;
 
 template<> void wxCollectionToVariantArray( wxWindowList const &theList, wxxVariantArray &value)
 {
-    wxListCollectionToVariantArray( theList , value ) ;
+    wxListCollectionToVariantArray<wxWindowList::compatibility_iterator>( theList , value ) ;
 }
 
 WX_DEFINE_FLAGS( wxWindowStyle )