From 4d71fe0d53c8de935fb38d4d479a984e6eea844a Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Tue, 26 Apr 2005 17:08:09 +0000 Subject: 2005-04-26 Jeremy Katz * 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. --- text.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'text.py') 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) -- cgit