]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/wx/lib/stattext.py
typo
[wxWidgets.git] / wxPython / wx / lib / stattext.py
index 5a87aa9e03a41cab14c71836f1dd5c554a5a55c3..c7cd5ff21ec1a4a305f2268bcc9a36cd83ff0107 100644 (file)
@@ -35,17 +35,17 @@ class GenStaticText(wx.PyControl):
         self.SetPosition(pos)
         font = parent.GetFont()
         if not font.Ok():
-            font = wx.SystemSettings.GetSystemFont(wx.SYS_DEFAULT_GUI_FONT)
+            font = wx.SystemSettings.GetFont(wx.SYS_DEFAULT_GUI_FONT)
         wx.PyControl.SetFont(self, font) # same here
 
         self.defBackClr = parent.GetBackgroundColour()
         if not self.defBackClr.Ok():
-            self.defBackClr = wx.SystemSettings.GetSystemColour(wx.SYS_COLOUR_3DFACE)
+            self.defBackClr = wx.SystemSettings.GetColour(wx.SYS_COLOUR_3DFACE)
         self.SetBackgroundColour(self.defBackClr)
 
         clr = parent.GetForegroundColour()
         if not clr.Ok():
-            clr = wx.SystemSettings_GetSystemColour(wx.SYS_COLOUR_BTNTEXT)
+            clr = wx.SystemSettings.GetColour(wx.SYS_COLOUR_BTNTEXT)
         self.SetForegroundColour(clr)
 
         rw, rh = size