summaryrefslogtreecommitdiffstats
path: root/gui.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 /gui.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 'gui.py')
-rwxr-xr-xgui.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/gui.py b/gui.py
index 2611c08f7..5c8eb49ab 100755
--- a/gui.py
+++ b/gui.py
@@ -715,6 +715,9 @@ class InstallInterface:
win = ExceptionWindow (text)
return win.getrc ()
+ def beep(self):
+ gtk.gdk.beep()
+
def kickstartErrorWindow(self, text):
s = _("The following error was found while parsing your "
"kickstart configuration:\n\n%s") %(text,)