]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/wxStaticText.py
Another demo tweak
[wxWidgets.git] / wxPython / demo / wxStaticText.py
index baba79cf08683d4fcd0ec0c526d242c25ebeb034..ff3d3c70eea7184eb4cdf46ba230368333f419e9 100644 (file)
@@ -14,7 +14,7 @@ class TestPanel(wxPanel):
                      wxPoint(20, 30))
 
         wxStaticText(self, -1, "Is this yellow?",
-                     wxPoint(20, 70)).SetBackgroundColour(wxNamedColour('Yellow'))
+                     wxPoint(20, 70)).SetBackgroundColour('Yellow')
 
         str = "This is a different font."
         text = wxStaticText(self, -1, str, wxPoint(20, 100))
@@ -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.
 '''
 
 #---------------------------------------------------------------------------