changed: #hasSubversionSupport (stc compilation fix)
authorvrany
Tue, 13 Mar 2012 18:24:12 +0100
changeset 14059 9afc79d37c0c
parent 14058 670252a21fb9
child 14060 cefb6d8205e4
changed: #hasSubversionSupport (stc compilation fix)
ConfigurableFeatures.st
--- a/ConfigurableFeatures.st	Thu Mar 08 21:29:30 2012 +0100
+++ b/ConfigurableFeatures.st	Tue Mar 13 18:24:12 2012 +0100
@@ -196,13 +196,14 @@
 
 hasSubversionSupport
     "/ use Smalltalk-at to trick the dependency/prerequisite generator
-    ^ (Smalltalk at: #'SVN::SVNSourceCodeManager' ifAbsent:nil) notNil
+    ^ (Smalltalk at: #'SVNSourceCodeManager' ifAbsent:nil) notNil
 
     "
      ConfigurableFeatures hasSubversionSupport
     "
 
     "Created: / 07-09-2011 / 10:40:40 / cg"
+    "Modified: / 13-03-2012 / 17:19:13 / Jan Vrany <jan.vrany.fit.cvut.cz>"
 !
 
 hasSubversionSupportEnabled
@@ -214,9 +215,9 @@
 !ConfigurableFeatures class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ConfigurableFeatures.st,v 1.6 2012-01-19 12:09:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ConfigurableFeatures.st,v 1.7 2012-03-13 17:24:12 vrany Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/ConfigurableFeatures.st,v 1.6 2012-01-19 12:09:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ConfigurableFeatures.st,v 1.7 2012-03-13 17:24:12 vrany Exp $'
 ! !