summaryrefslogtreecommitdiffstats
path: root/instdata.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-05-29 00:24:53 +0000
committerJeremy Katz <katzj@redhat.com>2002-05-29 00:24:53 +0000
commit75c835e6750a63ce59f8422ca948b9b8051cd064 (patch)
tree36e79104c55e20e376b649e6aeda4c39d87c8958 /instdata.py
parente20588a97889f462c0ceefdf05bca001ac017b3e (diff)
downloadanaconda-75c835e6750a63ce59f8422ca948b9b8051cd064.tar.gz
anaconda-75c835e6750a63ce59f8422ca948b9b8051cd064.tar.xz
anaconda-75c835e6750a63ce59f8422ca948b9b8051cd064.zip
more keyboard related changes. the xconfig object now has a keyboard object
instead of just trying to be updated everytime we change the keyboard object. needs a newer rhpl (0.7 or better)
Diffstat (limited to 'instdata.py')
-rw-r--r--instdata.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/instdata.py b/instdata.py
index 0b5653063..bdbc93498 100644
--- a/instdata.py
+++ b/instdata.py
@@ -78,6 +78,10 @@ class InstallData:
def setInstallProgressClass(self, c):
self.instProgress = c
+ # expects a Keyboard object
+ def setKeyboard(self, keyboard):
+ self.keyboard = keyboard
+
# expects a Mouse object
def setMouse(self, mouse):
self.mouse = mouse