#FEATURE by cg
authorClaus Gittinger <cg@exept.de>
Fri, 07 Dec 2018 15:40:10 +0100
changeset 23558 0fd6bf3b0c29
parent 23557 a40f4d446b1a
child 23559 82d98769fd95
#FEATURE by cg class: ProjectDefinition class changed: #checkForLoad (send #raiseRequestWith: instead of #raiseWith:)
ProjectDefinition.st
--- a/ProjectDefinition.st	Tue Dec 04 04:33:24 2018 +0000
+++ b/ProjectDefinition.st	Fri Dec 07 15:40:10 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2006 by eXept Software AG
 	      All Rights Reserved
@@ -2943,7 +2945,6 @@
     "Created: / 23-01-2007 / 19:08:27 / cg"
 ! !
 
-
 !ProjectDefinition class methodsFor:'description - project information'!
 
 applicationAdditionalIconFileNames
@@ -5054,7 +5055,6 @@
     ^ self subProjectMakeCallsUsing:'call vcmake %1 %2'.
 ! !
 
-
 !ProjectDefinition class methodsFor:'file templates'!
 
 autopackage_default_dot_apspec
@@ -5567,10 +5567,11 @@
     "raise an error, if the package is not suitable for loading"
 
     self supportedOnPlatform ifFalse:[
-	PackageNotCompatibleError raiseWith:self package.
+        PackageNotCompatibleError raiseRequestWith:self package.
     ].
 
     "Modified (comment): / 24-02-2017 / 10:06:44 / cg"
+    "Modified: / 05-12-2018 / 10:28:21 / Claus Gittinger"
 !
 
 ensureFullyLoaded
@@ -8396,14 +8397,6 @@
     "Modified: / 20-09-2006 / 15:00:00 / cg"
 !
 
-isPluginDefinition
-    "is this a plugin (only used by deployed applications)"
-
-    ^ false
-
-    "Created: / 22-09-2018 / 11:01:33 / Claus Gittinger"
-!
-
 isProjectDefinition
     "concrete i.e. not abstract"