[Python-gtkextra-commits] CVS: python-gtkextra/gtkextra __init__.py,1.3,1.4
Status: Beta
Brought to you by:
treeves
From: <pyt...@li...> - 2002-01-04 12:24:16
|
Update of /cvsroot/python-gtkextra/python-gtkextra/gtkextra In directory usw-pr-cvs1:/tmp/cvs-serv10524/gtkextra Modified Files: __init__.py Log Message: Fixed two typos where heigth should have been height. Index: __init__.py =================================================================== RCS file: /cvsroot/python-gtkextra/python-gtkextra/gtkextra/__init__.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** __init__.py 2002/01/04 12:15:50 1.3 --- __init__.py 2002/01/04 12:24:13 1.4 *************** *** 1195,1199 **** """ _gtkextra.gtk_plot_move(self._o, x, y) ! def resize(self, width, heigth): """Resize the widget. width and height should both be in the range 0.0 .. 1.0, --- 1195,1199 ---- """ _gtkextra.gtk_plot_move(self._o, x, y) ! def resize(self, width, height): """Resize the widget. width and height should both be in the range 0.0 .. 1.0, *************** *** 1202,1206 **** """ _gtkextra.gtk_plot_resize(self._o, width, height) ! def move_resize(self, x, y, width, heigth): """Move and resize the widget in a single operation. This is faster than doing each operation separately. --- 1202,1206 ---- """ _gtkextra.gtk_plot_resize(self._o, width, height) ! def move_resize(self, x, y, width, height): """Move and resize the widget in a single operation. This is faster than doing each operation separately. |