DebugView.st
changeset 3503 925fce9419c2
parent 3482 6ba75681ea47
child 3510 850a051a8235
--- a/DebugView.st	Tue Dec 11 11:19:50 2001 +0100
+++ b/DebugView.st	Tue Dec 11 11:20:56 2001 +0100
@@ -3797,21 +3797,22 @@
 openAboutThisApplication
     "opens an about box for this application."
 
-    |rev myClass clsRev msg|
-
-    rev := ''.
-    myClass := self class.
-
-    (clsRev := myClass revision) notNil ifTrue: [rev := '  (rev: ', clsRev printString, ')'].
-
-    msg := '\' withCRs , myClass name asBoldText, rev.
-
-    Dialog
-        about:(resources string:msg)
-        label:(resources string:'About DebugView')
-        icon:self class defaultIcon
-
-    "Created: / 17.11.2001 / 23:08:22 / cg"
+    DialogBox aboutClass:self class.
+"/    |rev myClass clsRev msg|
+"/
+"/    rev := ''.
+"/    myClass := self class.
+"/
+"/    (clsRev := myClass revision) notNil ifTrue: [rev := '  (rev: ', clsRev printString, ')'].
+"/
+"/    msg := '\' withCRs , myClass name asBoldText, rev.
+"/
+"/    Dialog
+"/        about:(resources string:msg)
+"/        label:(resources string:'About DebugView')
+"/        icon:self class defaultIcon
+"/
+"/    "Created: / 17.11.2001 / 23:08:22 / cg"
 !
 
 quickTerminate
@@ -5617,6 +5618,6 @@
 !DebugView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.304 2001-12-04 09:38:47 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.305 2001-12-11 10:20:43 cg Exp $'
 ! !
 DebugView initialize!