diff -r 9fa88a5d034d -r eeb3eceba2e9 MCChangeSelectionRequest.st --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/MCChangeSelectionRequest.st Wed Nov 22 14:13:43 2006 +0100 @@ -0,0 +1,37 @@ +"{ Package: 'stx:goodies/monticello' }" + +Notification subclass:#MCChangeSelectionRequest + instanceVariableNames:'patch label' + classVariableNames:'' + poolDictionaries:'' + category:'Monticello-Versioning' +! + + +!MCChangeSelectionRequest methodsFor:'as yet unclassified'! + +defaultAction + ^ (MCChangeSelector new patch: patch; label: label) showModally +! + +label + ^ label +! + +label: aString + label _ aString +! + +patch + ^ patch +! + +patch: aPatch + patch _ aPatch +! ! + +!MCChangeSelectionRequest class methodsFor:'documentation'! + +version + ^ '$Header: /cvs/stx/stx/goodies/monticello/MCChangeSelectionRequest.st,v 1.1 2006-11-22 13:13:43 cg Exp $' +! !