MCVersionNameAndMessageRequest.st
author Patrik Svestka <patrik.svestka@gmail.com>
Wed, 14 Nov 2018 12:57:13 +0100
branchjv
changeset 1095 87f223484bc3
parent 605 d1ee5e40d05e
child 1167 37c202ea81a8
permissions -rw-r--r--
Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present - All source *.st files are now Unicode UTF8 without BOM Files are in two groups (fileOut works this way in Smalltalk/X): - containing a unicode character have "{ Encoding: utf8 }" at the header - ASCII only are without the header

"{ Package: 'stx:goodies/monticello' }"

Notification subclass:#MCVersionNameAndMessageRequest
	instanceVariableNames:'suggestion'
	classVariableNames:''
	poolDictionaries:''
	category:'SCM-Monticello-Versioning'
!


!MCVersionNameAndMessageRequest methodsFor:'as yet unclassified'!

defaultAction
	^ MCSaveVersionDialog new
		versionName: suggestion;
		showModally
!

suggestedName
	^ suggestion
!

suggestedName: aString
	suggestion _ aString
! !

!MCVersionNameAndMessageRequest class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCVersionNameAndMessageRequest.st,v 1.2 2012-09-11 21:15:35 cg Exp $'
! !