# HG changeset patch # User Claus Gittinger # Date 1422709478 -3600 # Node ID 9457631f01661f3a6297e0618d2576f05c553266 # Parent a61d928b25b7de2612cd50a5182879319cad2441 class: BrowserView comment/format in: #beep diff -r a61d928b25b7 -r 9457631f0166 BrowserView.st --- a/BrowserView.st Sat Jan 31 13:54:56 2015 +0100 +++ b/BrowserView.st Sat Jan 31 14:04:38 2015 +0100 @@ -11,6 +11,8 @@ " "{ Package: 'stx:libtool' }" +"{ NameSpace: Smalltalk }" + StandardSystemView subclass:#BrowserView instanceVariableNames:'classCategoryListView classListView methodCategoryListView methodListView classMethodListView codeView classToggle @@ -11025,6 +11027,8 @@ !BrowserView methodsFor:'misc'! beep + "output an audible beep or bell on my screen device" + UserPreferences current beepInEditor ifTrue:[ super beep ] @@ -14516,7 +14520,7 @@ !BrowserView class methodsFor:'documentation'! version_CVS - ^ '$Header: /cvs/stx/stx/libtool/BrowserView.st,v 1.864 2014-07-11 00:11:05 cg Exp $' + ^ '$Header: /cvs/stx/stx/libtool/BrowserView.st,v 1.865 2015-01-31 13:04:38 cg Exp $' ! !