commit-gnue
[Top][All Lists]
Advanced

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

gnue-forms/src/GFObjects GFComponent.py GFEntry...


From: Bajusz Tamás
Subject: gnue-forms/src/GFObjects GFComponent.py GFEntry...
Date: Sun, 06 Jul 2003 17:35:01 -0400

CVSROOT:        /cvsroot/gnue
Module name:    gnue-forms
Branch:         
Changes by:     Bajusz Tamás <address@hidden>   03/07/06 17:35:00

Modified files:
        src/GFObjects  : GFComponent.py GFEntry.py GFImage.py GFLabel.py 

Log message:
        fixing Char:height="1.0" bug in forms generated by designer wizards

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-forms/src/GFObjects/GFComponent.py.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-forms/src/GFObjects/GFEntry.py.diff?tr1=1.87&tr2=1.88&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-forms/src/GFObjects/GFImage.py.diff?tr1=1.4&tr2=1.5&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-forms/src/GFObjects/GFLabel.py.diff?tr1=1.11&tr2=1.12&r1=text&r2=text

Patches:
Index: gnue-forms/src/GFObjects/GFComponent.py
diff -c gnue-forms/src/GFObjects/GFComponent.py:1.1 
gnue-forms/src/GFObjects/GFComponent.py:1.2
*** gnue-forms/src/GFObjects/GFComponent.py:1.1 Wed Jun 11 21:00:09 2003
--- gnue-forms/src/GFObjects/GFComponent.py     Sun Jul  6 17:35:00 2003
***************
*** 43,49 ****
  
      # Default attributes (these may be replaced by parser)
      self.type = "URL"
!     self.Char__height = float(gConfig('widgetHeight'))
  
      # Runtime Variables
      self._inits = [self.initialize]
--- 43,49 ----
  
      # Default attributes (these may be replaced by parser)
      self.type = "URL"
!     self.Char__height = int(gConfig('widgetHeight'))
  
      # Runtime Variables
      self._inits = [self.initialize]
Index: gnue-forms/src/GFObjects/GFEntry.py
diff -c gnue-forms/src/GFObjects/GFEntry.py:1.87 
gnue-forms/src/GFObjects/GFEntry.py:1.88
*** gnue-forms/src/GFObjects/GFEntry.py:1.87    Wed Jun 11 15:55:17 2003
--- gnue-forms/src/GFObjects/GFEntry.py Sun Jul  6 17:35:00 2003
***************
*** 45,52 ****
      GFTabStop.__init__(self, parent, 'GFEntry')
  
      # Default attributes (these may be replaced by parser)
!     self.Char__height = float(gConfig('widgetHeight'))
!     self.Char__width = float(gConfig('widgetWidth'))
      self.style = "default"
  
      self._inits = [self.initialize]
--- 45,52 ----
      GFTabStop.__init__(self, parent, 'GFEntry')
  
      # Default attributes (these may be replaced by parser)
!     self.Char__height = int(gConfig('widgetHeight'))
!     self.Char__width = int(gConfig('widgetWidth'))
      self.style = "default"
  
      self._inits = [self.initialize]
Index: gnue-forms/src/GFObjects/GFImage.py
diff -c gnue-forms/src/GFObjects/GFImage.py:1.4 
gnue-forms/src/GFObjects/GFImage.py:1.5
*** gnue-forms/src/GFObjects/GFImage.py:1.4     Wed Jun 11 15:55:17 2003
--- gnue-forms/src/GFObjects/GFImage.py Sun Jul  6 17:35:00 2003
***************
*** 42,48 ****
  
      # Default attributes (these may be replaced by parser)
      self.type = "URL"
!     self.Char__height = float(gConfig('widgetHeight'))
  
      # Runtime Variables
      self._inits = [self.initialize]
--- 42,48 ----
  
      # Default attributes (these may be replaced by parser)
      self.type = "URL"
!     self.Char__height = int(gConfig('widgetHeight'))
  
      # Runtime Variables
      self._inits = [self.initialize]
Index: gnue-forms/src/GFObjects/GFLabel.py
diff -c gnue-forms/src/GFObjects/GFLabel.py:1.11 
gnue-forms/src/GFObjects/GFLabel.py:1.12
*** gnue-forms/src/GFObjects/GFLabel.py:1.11    Wed Jun 11 15:55:17 2003
--- gnue-forms/src/GFObjects/GFLabel.py Sun Jul  6 17:35:00 2003
***************
*** 42,48 ****
  
      # Default attributes (these may be replaced by parser)
      self.alignment = "left"
!     self.Char__height = float(gConfig('widgetHeight'))
  
      # Runtime Variables
      self._inits = [self.initialize]
--- 42,48 ----
  
      # Default attributes (these may be replaced by parser)
      self.alignment = "left"
!     self.Char__height = int(gConfig('widgetHeight'))
  
      # Runtime Variables
      self._inits = [self.initialize]




reply via email to

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