changed #setCurrentMethod:
authorClaus Gittinger <cg@exept.de>
Mon, 14 Jul 2008 12:51:25 +0200
changeset 8215 ec7047c6df7a
parent 8214 87b74dc47b98
child 8216 018112ba8469
changed #setCurrentMethod:
DebugView.st
--- a/DebugView.st	Mon Jul 14 12:50:24 2008 +0200
+++ b/DebugView.st	Mon Jul 14 12:51:25 2008 +0200
@@ -12,33 +12,33 @@
 "{ 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'
-        classVariableNames:'CachedDebugger CachedExclusive OpenDebuggers MoreDebuggingDetail
-                DebuggingDebugger DefaultDebuggerBackgroundColor
-                InitialNChainShown IgnoredHalts'
-        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'
+	classVariableNames:'CachedDebugger CachedExclusive OpenDebuggers MoreDebuggingDetail
+		DebuggingDebugger DefaultDebuggerBackgroundColor
+		InitialNChainShown IgnoredHalts'
+	poolDictionaries:''
+	category:'Interface-Debugger'
 !
 
 Object subclass:#IgnoredHalt
-        instanceVariableNames:'methodHolder method lineNumber ignoreEndTime ignoreCount'
-        classVariableNames:''
-        poolDictionaries:''
-        privateIn:DebugView
+	instanceVariableNames:'methodHolder method lineNumber ignoreEndTime ignoreCount'
+	classVariableNames:''
+	poolDictionaries:''
+	privateIn:DebugView
 !
 
 !DebugView class methodsFor:'documentation'!
@@ -6483,7 +6483,7 @@
 !DebugView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.444 2008-07-14 10:50:24 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.445 2008-07-14 10:51:25 cg Exp $'
 ! !
 
 DebugView initialize!