changed: #initialize
authorClaus Gittinger <cg@exept.de>
Fri, 27 Jul 2012 14:47:40 +0200
changeset 11693 367eaa0e1ead
parent 11692 227789d05b9e
child 11694 464f62536f09
changed: #initialize ouch: default setting for hideSupportCode was true. Changed to false.
DebugView.st
--- a/DebugView.st	Fri Jul 27 12:29:32 2012 +0200
+++ b/DebugView.st	Fri Jul 27 14:47:40 2012 +0200
@@ -12,52 +12,52 @@
 "{ Package: 'stx:libtool' }"
 
 StandardSystemView subclass:#DebugView
-        instanceVariableNames:'busy haveControl exitAction canContinue contextView codeView
-                receiverInspector contextInspector contextArray selectedContext
-                catchBlock grabber mayProceed traceView tracing bigStep
-                skipLineNr steppedContextAddress abortButton terminateButton
-                continueButton stepButton nextButton nextOverButton nextOutButton
-                sendButton returnButton restartButton exclusive inspecting
-                nChainShown inspectedProcess updateProcess stopButton
-                updateButton defineButton monitorToggle stepping
-                steppedContextLineno stepForReturn actualContext inWrap
-                stackInspector steppedContext wrapperContext verboseBacktrace
-                firstContext stepHow cachable currentMethod ignoreBreakpoints
-                stepUntilEntering lastStepUntilEntering
-                lastSelectionInReceiverInspector lastSelectionInContextInspector
-                canShowMore exitAbort reportButton setOfHiddenCallingSelectors
-                isStoppedAtHaltOrBreakPoint exceptionInfoLabel methodCodeToggle
-                methodCodeToggleSelectionHolder
-                isStoppedAtBreakPointWithParameter breakPointParameter
-                hideSupportCode'
-        classVariableNames:'CachedDebugger CachedExclusive OpenDebuggers MoreDebuggingDetail
-                DebuggingDebugger DebuggingDebugger2
-                DefaultDebuggerBackgroundColor InitialNChainShown IgnoredHalts
-                ShowThreadID LastIgnoreHaltNTimes LastIgnoreHaltDuration
-                LastExtent LastOrigin RememberedCallChain DebuggingDebugger3'
-        poolDictionaries:''
-        category:'Interface-Debugger'
+	instanceVariableNames:'busy haveControl exitAction canContinue contextView codeView
+		receiverInspector contextInspector contextArray selectedContext
+		catchBlock grabber mayProceed traceView tracing bigStep
+		skipLineNr steppedContextAddress abortButton terminateButton
+		continueButton stepButton nextButton nextOverButton nextOutButton
+		sendButton returnButton restartButton exclusive inspecting
+		nChainShown inspectedProcess updateProcess stopButton
+		updateButton defineButton monitorToggle stepping
+		steppedContextLineno stepForReturn actualContext inWrap
+		stackInspector steppedContext wrapperContext verboseBacktrace
+		firstContext stepHow cachable currentMethod ignoreBreakpoints
+		stepUntilEntering lastStepUntilEntering
+		lastSelectionInReceiverInspector lastSelectionInContextInspector
+		canShowMore exitAbort reportButton setOfHiddenCallingSelectors
+		isStoppedAtHaltOrBreakPoint exceptionInfoLabel methodCodeToggle
+		methodCodeToggleSelectionHolder
+		isStoppedAtBreakPointWithParameter breakPointParameter
+		hideSupportCode'
+	classVariableNames:'CachedDebugger CachedExclusive OpenDebuggers MoreDebuggingDetail
+		DebuggingDebugger DebuggingDebugger2
+		DefaultDebuggerBackgroundColor InitialNChainShown IgnoredHalts
+		ShowThreadID LastIgnoreHaltNTimes LastIgnoreHaltDuration
+		LastExtent LastOrigin RememberedCallChain DebuggingDebugger3'
+	poolDictionaries:''
+	category:'Interface-Debugger'
 !
 
 Object subclass:#IgnoredHaltOrBreakpoint
-        instanceVariableNames:'ignoreEndTime ignoreCount ignoreUntilShiftKeyPressed'
-        classVariableNames:''
-        poolDictionaries:''
-        privateIn:DebugView
+	instanceVariableNames:'ignoreEndTime ignoreCount ignoreUntilShiftKeyPressed'
+	classVariableNames:''
+	poolDictionaries:''
+	privateIn:DebugView
 !
 
 DebugView::IgnoredHaltOrBreakpoint subclass:#IgnoredHalt
-        instanceVariableNames:'weakMethodHolder lineNumber'
-        classVariableNames:''
-        poolDictionaries:''
-        privateIn:DebugView
+	instanceVariableNames:'weakMethodHolder lineNumber'
+	classVariableNames:''
+	poolDictionaries:''
+	privateIn:DebugView
 !
 
 DebugView::IgnoredHaltOrBreakpoint subclass:#IgnoredBreakpoint
-        instanceVariableNames:'parameter'
-        classVariableNames:''
-        poolDictionaries:''
-        privateIn:DebugView
+	instanceVariableNames:'parameter'
+	classVariableNames:''
+	poolDictionaries:''
+	privateIn:DebugView
 !
 
 !DebugView class methodsFor:'documentation'!
@@ -2512,7 +2512,7 @@
     font := font onDevice:device.
 
     verboseBacktrace := UserPreferences current verboseBacktraceInDebugger ? false.
-    hideSupportCode := UserPreferences current hideSupportCodeInDebugger ? true.
+    hideSupportCode := UserPreferences current hideSupportCodeInDebugger ? false.
     ignoreBreakpoints := true.    "/ ignore halts/breakpoints in doIts of
                                   "/ the debugger
 
@@ -2636,7 +2636,7 @@
      Debugger newDebugger
     "
 
-    "Modified: / 10-06-2012 / 21:27:13 / cg"
+    "Modified: / 27-07-2012 / 14:46:07 / cg"
 !
 
 initializeAbortButtonIn:bpanel
@@ -8023,11 +8023,11 @@
 !DebugView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.549 2012-07-25 17:20:06 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.550 2012-07-27 12:47:40 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.549 2012-07-25 17:20:06 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.550 2012-07-27 12:47:40 cg Exp $'
 !
 
 version_SVN