Update of /cvsroot/freevo/freevo/src/gui
In directory sc8-pr-cvs1:/tmp/cvs-serv3852

Modified Files:
        GUIObject.py 
Log Message:
Make sure get_size() always returns int


Index: GUIObject.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/gui/GUIObject.py,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** GUIObject.py        14 Sep 2003 20:09:36 -0000      1.28
--- GUIObject.py        8 Oct 2003 03:14:51 -0000       1.29
***************
*** 8,11 ****
--- 8,14 ----
  #-----------------------------------------------------------------------
  # $Log$
+ # Revision 1.29  2003/10/08 03:14:51  outlyer
+ # Make sure get_size() always returns int
+ #
  # Revision 1.28  2003/09/14 20:09:36  dischi
  # removed some TRUE=1 and FALSE=0 add changed some debugs to _debug_
***************
*** 223,227 ****
          Returns:   (width, height) - as list.
          """
!         return (self.width, self.height)
  
  
--- 226,230 ----
          Returns:   (width, height) - as list.
          """
!         return (int(self.width), int(self.height))
  
  




-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to