]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/ColorPanel.py
move wxPython to new trunk
[wxWidgets.git] / wxPython / demo / ColorPanel.py
diff --git a/wxPython/demo/ColorPanel.py b/wxPython/demo/ColorPanel.py
deleted file mode 100644 (file)
index 29ef92c..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#
-# Note: this module is not a demo per se, but is used by many of 
-# the demo modules for various purposes.
-#
-
-import wx
-
-#---------------------------------------------------------------------------
-
-
-class ColoredPanel(wx.Window):
-    def __init__(self, parent, color):
-        wx.Window.__init__(self, parent, -1, style = wx.SIMPLE_BORDER)
-        self.SetBackgroundColour(color)
-        if wx.Platform == '__WXGTK__':
-            self.SetBackgroundStyle(wx.BG_STYLE_CUSTOM)
-
-
-#---------------------------------------------------------------------------
-