]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/demo/ColorPanel.py
merged 2.2 branch
[wxWidgets.git] / utils / wxPython / demo / ColorPanel.py
diff --git a/utils/wxPython/demo/ColorPanel.py b/utils/wxPython/demo/ColorPanel.py
deleted file mode 100644 (file)
index f90a8b0..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-
-from wxPython.wx import *
-
-#---------------------------------------------------------------------------
-
-
-class ColoredPanel(wxWindow):
-    def __init__(self, parent, color):
-        wxWindow.__init__(self, parent, -1,
-                          wxDefaultPosition, wxDefaultSize, wxRAISED_BORDER)
-        self.SetBackgroundColour(color)
-
-#---------------------------------------------------------------------------