#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Wed, 18 Dec 2019 19:04:04 +0100
changeset 4537 4a2fd1c625fc
parent 4536 04151e6d8f54
child 4538 8f39b91c0a2e
#OTHER by cg regenerated
SourceCodeManagerUtilities.st
--- a/SourceCodeManagerUtilities.st	Wed Dec 18 19:03:59 2019 +0100
+++ b/SourceCodeManagerUtilities.st	Wed Dec 18 19:04:04 2019 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2000 eXept Software AG
               All Rights Reserved
@@ -1913,14 +1915,25 @@
 
 checkinPackage:packageToCheckIn classes:doClasses extensions:doExtensions buildSupport:doBuild askForMethodsInOtherPackages:askForMethodsInOtherPackages
     ^ self 
-        checkinPackage:packageToCheckIn classes:doClasses extensions:doExtensions 
-        buildSupport:doBuild askForMethodsInOtherPackages:askForMethodsInOtherPackages 
+        checkinPackage:packageToCheckIn 
+        classes:doClasses extensions:doExtensions 
+        buildSupport:doBuild winRCOnly:false 
+        askForMethodsInOtherPackages:askForMethodsInOtherPackages 
         onBranch:nil
 
     "Created: / 05-12-2017 / 20:02:49 / cg"
 !
 
 checkinPackage:packageToCheckIn classes:doClasses extensions:doExtensions buildSupport:doBuild askForMethodsInOtherPackages:askForMethodsInOtherPackages onBranch:branchNameOrNil
+    ^ self 
+        checkinPackage:packageToCheckIn 
+        classes:doClasses extensions:doExtensions 
+        buildSupport:doBuild winRCOnly:false
+        askForMethodsInOtherPackages:askForMethodsInOtherPackages 
+        onBranch:branchNameOrNil
+!
+
+checkinPackage:packageToCheckIn classes:doClasses extensions:doExtensions buildSupport:doBuild winRCOnly:winRCOnly askForMethodsInOtherPackages:askForMethodsInOtherPackages onBranch:branchNameOrNil
     self subclassResponsibility
 
     "Created: / 05-12-2017 / 20:02:34 / cg"