diff options
author | Chris Lumens <clumens@redhat.com> | 2006-05-17 19:37:17 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-05-17 19:37:17 +0000 |
commit | 5f5e54c009a694d1b4c0d24ab5a98f75b73a6c9e (patch) | |
tree | 94502c368d4ffc34030ae1b47255bd90277434da /gui.py | |
parent | 23bb5ad4d2383d84acf3a6d63d3271dc46268f5b (diff) | |
download | anaconda-5f5e54c009a694d1b4c0d24ab5a98f75b73a6c9e.tar.gz anaconda-5f5e54c009a694d1b4c0d24ab5a98f75b73a6c9e.tar.xz anaconda-5f5e54c009a694d1b4c0d24ab5a98f75b73a6c9e.zip |
I found some more stuff to remove from gui.py.
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 15 |
1 files changed, 0 insertions, 15 deletions
@@ -1106,21 +1106,6 @@ class InstallControlState: def getNextEnabled (self): return self.nextEnabled - def findPixmap(self, file): - warnings.warn("ics.findPixmap is deprecated, use gui.findPixmap instead", DeprecationWarning, stacklevel=2) - return findPixmap(file) - - def readPixmap (self, file, height = None, width = None): - warnings.warn("ics.readPixmap is deprecated, use gui.readImageFromFile instead", DeprecationWarning, stacklevel=2) - return readImageFromFile(file, height, width) - - def readPixmapDithered(self, file, height = None, width = None): - warnings.warn("ics.readPixmapDithered is deprecated, use gui.readImageFromFile instead", DeprecationWarning, stacklevel=2) - return readImageFromFile(file, height, width, dither = 1) - - def readHTML (self, file): - pass - def setScreenPrev (self): self.cw.prevClicked () |