summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-04-26 17:08:09 +0000
committerJeremy Katz <katzj@redhat.com>2005-04-26 17:08:09 +0000
commit4d71fe0d53c8de935fb38d4d479a984e6eea844a (patch)
tree8ff724df3baa66ef1abe3c2c3ba66cd9f4e7f1c4 /text.py
parentba53dcab090f5b3b6940cc97f4848eb97449dcb7 (diff)
downloadanaconda-4d71fe0d53c8de935fb38d4d479a984e6eea844a.tar.gz
anaconda-4d71fe0d53c8de935fb38d4d479a984e6eea844a.tar.xz
anaconda-4d71fe0d53c8de935fb38d4d479a984e6eea844a.zip
2005-04-26 Jeremy Katz <katzj@redhat.com>
* text.py (InstallInterface.beep): Add no-op beep method. Could actually do something if newtBell() were bound in snack. * cmdline.py (InstallInterface.beep): Add (no-op) beep method. * gui.py (InstallInterface.beep): Add beep method. * scripts/mk-images.x86_64 (COMMONMODULES): Add pcspkr module. * scripts/mk-images.i386 (COMMONMODULES): Likewise. * loader2/loader.c (main): Load pcspkr module.
Diffstat (limited to 'text.py')
-rw-r--r--text.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/text.py b/text.py
index ddee3ac9c..53c9737fa 100644
--- a/text.py
+++ b/text.py
@@ -341,6 +341,10 @@ class InstallInterface:
def waitWindow(self, title, text):
return WaitWindow(self.screen, title, text)
+ def beep(self):
+ # no-op. could call newtBell() if it was bound
+ pass
+
def drawFrame(self):
self.welcomeText = _("Welcome to %s") % (productName,)
self.screen.drawRootText (0, 0, self.welcomeText)