Tools__NewClassWizardDialog.st
changeset 18936 f52f7094d456
parent 18880 2ada87d888e3
--- a/Tools__NewClassWizardDialog.st	Mon Jul 22 11:08:12 2019 +0200
+++ b/Tools__NewClassWizardDialog.st	Mon Jul 22 15:03:24 2019 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2009 by eXept Software AG
               All Rights Reserved
@@ -118,6 +116,9 @@
 #createInitializer
 'Generate template code for initialized instances'
 
+#createClassInitializer
+'Generate code for class initialization'
+
 #createPrintMethod
 'Create an initial print method template'
 
@@ -166,7 +167,7 @@
 )
 
     "Modified: / 27-01-2012 / 14:41:44 / cg"
-    "Modified: / 22-09-2018 / 16:06:18 / Claus Gittinger"
+    "Modified: / 22-07-2019 / 15:02:57 / Claus Gittinger"
 ! !
 
 !NewClassWizardDialog class methodsFor:'image specs'!
@@ -304,7 +305,7 @@
     ^ 
     #(FullSpec
        name: windowSpec
-       uuid: '9a1f999e-be6f-11e8-b6ed-b8f6b1108e05'
+       uuid: 'b1c26d38-ac80-11e9-ab14-b8f6b1108e05'
        window: 
       (WindowSpec
          label: 'Class Creation Wizard'
@@ -652,7 +653,7 @@
           (CheckBoxSpec
              label: 'Accessors'
              name: 'CheckBox1'
-             layout: (LayoutFrame 310 0 497 0 0 1 519 0)
+             layout: (LayoutFrame 410 0 497 0 0 1 519 0)
              activeHelpKey: createAccessors
              uuid: 'f1a8e666-be47-11e8-b6ed-b8f6b1108e05'
              visibilityChannel: isCreatingClassHolder
@@ -672,7 +673,7 @@
           (CheckBoxSpec
              label: 'Print Method'
              name: 'CheckBox4'
-             layout: (LayoutFrame 310 0 522 0 0 1 544 0)
+             layout: (LayoutFrame 410 0 522 0 0 1 544 0)
              activeHelpKey: createPrintMethod
              uuid: 'f1a8eb20-be47-11e8-b6ed-b8f6b1108e05'
              visibilityChannel: false
@@ -683,7 +684,7 @@
              label: 'Class Initializer'
              name: 'CheckBox7'
              layout: (LayoutFrame 120 0 547 0 0 1 569 0)
-             activeHelpKey: createRequiredMethods
+             activeHelpKey: createClassInitializer
              uuid: 'f1a8ea44-be47-11e8-b6ed-b8f6b1108e05'
              visibilityChannel: isCreatingClassHolder
              model: createClassInitializerMethodHolder
@@ -735,6 +736,8 @@
         
        )
      )
+
+    "Modified: / 22-07-2019 / 15:03:08 / Claus Gittinger"
 ! !
 
 !NewClassWizardDialog methodsFor:'accessing'!