Fix typos in wxStaticBox docs

Add missing commas in code examples.

Closes #18542
This commit is contained in:
PB
2019-10-25 19:39:47 +02:00
parent dc3e685e3a
commit 46792d4933

View File

@@ -25,7 +25,7 @@
wxPanel *panel = new wxPanel(this); wxPanel *panel = new wxPanel(this);
wxStaticBox *box = new wxStaticBox(panel, wxID_ANY, "StaticBox"); wxStaticBox *box = new wxStaticBox(panel, wxID_ANY, "StaticBox");
new wxStaticText(box, wxID_ANY "This window is a child of the staticbox"); new wxStaticText(box, wxID_ANY, "This window is a child of the staticbox");
... ...
} }
@endcode @endcode
@@ -34,7 +34,7 @@
@code @code
wxStaticBox *box = new wxStaticBox(panel, wxID_ANY, "StaticBox"); wxStaticBox *box = new wxStaticBox(panel, wxID_ANY, "StaticBox");
new wxStaticText(panel, wxID_ANY "This window is a child of the panel"); new wxStaticText(panel, wxID_ANY, "This window is a child of the panel");
... ...
@endcode @endcode