X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..ccdcde00d9ae27ca20ff6c3c9495918a0ec725aa:/wxPython/demo/wxStaticText.py?ds=inline

diff --git a/wxPython/demo/wxStaticText.py b/wxPython/demo/wxStaticText.py
index baba79cf08..6d047bd0e7 100644
--- a/wxPython/demo/wxStaticText.py
+++ b/wxPython/demo/wxStaticText.py
@@ -43,31 +43,6 @@ def runTest(frame, nb, log):
 overview = '''\
 A static text control displays one or more lines of read-only text.
 
-wxStaticText()
--------------------------
-
-Default constructor.
-
-wxStaticText(wxWindow* parent, wxWindowID id, const wxString& label = "", const wxPoint& pos, const wxSize& size = wxDefaultSize, long style = 0, const wxString& name = "staticText")
-
-Constructor, creating and showing a text control.
-
-Parameters
--------------------
-
-parent = Parent window. Should not be NULL.
-
-id = Control identifier. A value of -1 denotes a default value.
-
-label = Text label.
-
-pos = Window position.
-
-size = Window size.
-
-style = Window style. See wxStaticText.
-
-name = Window name.
 '''
 
 #---------------------------------------------------------------------------