commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gnue/forms/src/uidrivers/wx UIdriver.py


From: Jason Cater
Subject: gnue/forms/src/uidrivers/wx UIdriver.py
Date: Wed, 26 Feb 2003 20:33:59 -0500

CVSROOT:        /cvsroot/gnue
Module name:    gnue
Changes by:     Jason Cater <address@hidden>    03/02/26 20:33:58

Modified files:
        forms/src/uidrivers/wx: UIdriver.py 

Log message:
        fixed broken code (temporary)

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue/forms/src/uidrivers/wx/UIdriver.py.diff?tr1=1.233&tr2=1.234&r1=text&r2=text

Patches:
Index: gnue/forms/src/uidrivers/wx/UIdriver.py
diff -c gnue/forms/src/uidrivers/wx/UIdriver.py:1.233 
gnue/forms/src/uidrivers/wx/UIdriver.py:1.234
*** gnue/forms/src/uidrivers/wx/UIdriver.py:1.233       Wed Feb 26 03:06:46 2003
--- gnue/forms/src/uidrivers/wx/UIdriver.py     Wed Feb 26 20:33:58 2003
***************
*** 41,47 ****
  from gnue.forms.GFForm import *
  
  ##from gnue.forms.uidrivers._commonGuiToolkit import UIdriver as commonToolkit
! from gnue.forms.uidrivers._base import UIdriver as commonToolkit
  
  from gnue.forms.uidrivers.wx.GFwxApp import *
  from gnue.forms.uidrivers.wx.UIWXSplashScreen import *
--- 41,47 ----
  from gnue.forms.GFForm import *
  
  ##from gnue.forms.uidrivers._commonGuiToolkit import UIdriver as commonToolkit
! from gnue.forms.uidrivers._base.UIdriver import *
  
  from gnue.forms.uidrivers.wx.GFwxApp import *
  from gnue.forms.uidrivers.wx.UIWXSplashScreen import *
***************
*** 66,74 ****
  # The public interface to the User Interface
  # All UIs must provide this class
  #
! class GFUserInterface(commonToolkit.GFUserInterface):
    def __init__(self, eventController, disableSplash = None):
!     commonToolkit.GFUserInterfaceBase.__init__(self,eventController)
  
      self._disableSplash = disableSplash
      
--- 66,76 ----
  # The public interface to the User Interface
  # All UIs must provide this class
  #
! ##class GFUserInterface(commonToolkit.GFUserInterface):
! class GFUserInterface(GFUserInterfaceBase):
    def __init__(self, eventController, disableSplash = None):
!     ##commonToolkit.GFUserInterface.__init__(self,eventController)
!     GFUserInterfaceBase.__init__(self,eventController)
  
      self._disableSplash = disableSplash
      




reply via email to

[Prev in Thread] Current Thread [Next in Thread]