From 671600d8087f778a0cc6a643b7d354b428ffccb6 Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Thu, 29 May 2008 14:10:52 +0000 Subject: [PATCH] Create own entry for default constructors git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53818 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/scrolbar.h | 8 +++++--- interface/splitter.h | 8 +++++--- interface/srchctrl.h | 8 +++++--- interface/statbmp.h | 8 +++++--- interface/statbox.h | 8 +++++--- interface/statline.h | 8 +++++--- interface/stattext.h | 8 +++++--- 7 files changed, 35 insertions(+), 21 deletions(-) diff --git a/interface/scrolbar.h b/interface/scrolbar.h index 6f097a8a98..d6574c6b06 100644 --- a/interface/scrolbar.h +++ b/interface/scrolbar.h @@ -31,7 +31,11 @@ class wxScrollBar : public wxControl { public: - //@{ + /** + Default constructor + */ + wxScrollBar(); + /** Constructor, creating and showing a scrollbar. @@ -54,14 +58,12 @@ public: @see Create(), wxValidator */ - wxScrollBar(); wxScrollBar(wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxSB_HORIZONTAL, const wxValidator& validator = wxDefaultValidator, const wxString& name = "scrollBar"); - //@} /** Destructor, destroying the scrollbar. diff --git a/interface/splitter.h b/interface/splitter.h index cf048023ed..71478582a3 100644 --- a/interface/splitter.h +++ b/interface/splitter.h @@ -46,7 +46,11 @@ class wxSplitterWindow : public wxWindow { public: - //@{ + /** + Default constructor + */ + wxSplitterWindow(); + /** Constructor for creating the window. @@ -73,13 +77,11 @@ public: @see Initialize(), SplitVertically(), SplitHorizontally(), Create() */ - wxSplitterWindow(); wxSplitterWindow(wxWindow* parent, wxWindowID id, const wxPoint& point = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxSP_3D, const wxString& name = "splitterWindow"); - //@} /** Destroys the wxSplitterWindow and its children. diff --git a/interface/srchctrl.h b/interface/srchctrl.h index a376269ba2..348632ae3f 100644 --- a/interface/srchctrl.h +++ b/interface/srchctrl.h @@ -48,7 +48,11 @@ class wxSearchCtrl : public wxTextCtrl { public: - //@{ + /** + Default constructor + */ + wxSearchCtrl(); + /** Constructor, creating and showing a text control. @@ -71,7 +75,6 @@ public: @see wxTextCtrl::Create, wxValidator */ - wxSearchCtrl(); wxSearchCtrl(wxWindow* parent, wxWindowID id, const wxString& value = "", const wxPoint& pos = wxDefaultPosition, @@ -79,7 +82,6 @@ public: long style = 0, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxSearchCtrlNameStr); - //@} /** Destructor, destroying the search control. diff --git a/interface/statbmp.h b/interface/statbmp.h index 6a100128f4..dde4136950 100644 --- a/interface/statbmp.h +++ b/interface/statbmp.h @@ -25,7 +25,11 @@ class wxStaticBitmap : public wxControl { public: - //@{ + /** + Default constructor + */ + wxStaticBitmap(); + /** Constructor, creating and showing a static bitmap control. @@ -46,14 +50,12 @@ public: @see Create() */ - wxStaticBitmap(); wxStaticBitmap(wxWindow* parent, wxWindowID id, const wxBitmap& label, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, const wxString& name = "staticBitmap"); - //@} /** Creation function, for two-step construction. For details see wxStaticBitmap(). diff --git a/interface/statbox.h b/interface/statbox.h index d4708b51cf..b6719749cb 100644 --- a/interface/statbox.h +++ b/interface/statbox.h @@ -32,7 +32,11 @@ class wxStaticBox : public wxControl { public: - //@{ + /** + Default constructor + */ + wxStaticBox(); + /** Constructor, creating and showing a static box. @@ -55,14 +59,12 @@ public: @see Create() */ - wxStaticBox(); wxStaticBox(wxWindow* parent, wxWindowID id, const wxString& label, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, const wxString& name = "staticBox"); - //@} /** Destructor, destroying the group box. diff --git a/interface/statline.h b/interface/statline.h index df71adf528..226f28a70a 100644 --- a/interface/statline.h +++ b/interface/statline.h @@ -28,7 +28,11 @@ class wxStaticLine : public wxControl { public: - //@{ + /** + Default constructor + */ + wxStaticLine(); + /** Constructor, creating and showing a static line. @@ -49,13 +53,11 @@ public: @see Create() */ - wxStaticLine(); wxStaticLine(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxLI_HORIZONTAL, const wxString& name = "staticLine"); - //@} /** Creates the static line for two-step construction. See wxStaticLine() diff --git a/interface/stattext.h b/interface/stattext.h index 9e16e68e74..ee65c9cdc6 100644 --- a/interface/stattext.h +++ b/interface/stattext.h @@ -47,7 +47,11 @@ class wxStaticText : public wxControl { public: - //@{ + /** + Default constructor. + */ + wxStaticText(); + /** Constructor, creating and showing a text control. @@ -68,14 +72,12 @@ public: @see Create() */ - wxStaticText(); wxStaticText(wxWindow* parent, wxWindowID id, const wxString& label, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, const wxString& name = "staticText"); - //@} /** Creation function, for two-step construction. For details see wxStaticText(). -- 2.45.2