From b701254ac27e39997f66242529a2f9f2d7e8a6e5 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 20 Jan 2004 23:31:20 +0000 Subject: [PATCH] Use new SystemSettings names git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25272 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/wx/lib/stattext.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wxPython/wx/lib/stattext.py b/wxPython/wx/lib/stattext.py index 5a87aa9e03..c7cd5ff21e 100644 --- a/wxPython/wx/lib/stattext.py +++ b/wxPython/wx/lib/stattext.py @@ -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 -- 2.45.2