Use Configurable includesFeature:#Feature instead of direct send of #hasFeature
authorvrany
Thu, 19 Jan 2012 11:48:23 +0100
changeset 11156 11c0b4cbc836
parent 11155 00c0dfb84c91
child 11157 7277655aee35
Use Configurable includesFeature:#Feature instead of direct send of #hasFeature changed: #cvsMenusAreShown #hasSubversionSupport #perforceMenusAreShown #svnMenusAreShown
AbstractFileBrowser.st
--- a/AbstractFileBrowser.st	Thu Jan 19 10:59:19 2012 +0100
+++ b/AbstractFileBrowser.st	Thu Jan 19 11:48:23 2012 +0100
@@ -3865,9 +3865,10 @@
 !
 
 cvsMenusAreShown
-    ^ ConfigurableFeatures hasCVSSupportEnabled
+    ^ ConfigurableFeatures includesFeature: #CVSSupportEnabled
 
     "Created: / 15-01-2012 / 13:00:05 / cg"
+    "Modified: / 19-01-2012 / 10:43:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 mercurialMenusAreShown
@@ -3891,9 +3892,10 @@
 !
 
 perforceMenusAreShown
-    ^ ConfigurableFeatures hasPerforceSupportEnabled
+    ^ ConfigurableFeatures includesFeature: #PerforceSupportEnabled
 
     "Created: / 15-01-2012 / 13:12:11 / cg"
+    "Modified: / 19-01-2012 / 10:43:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 showDirectoryTree
@@ -3925,9 +3927,10 @@
 !
 
 svnMenusAreShown
-    ^ ConfigurableFeatures hasSubversionSupportEnabled
+    ^ ConfigurableFeatures includesFeature: #SubversionSupportEnabled
 
     "Created: / 15-01-2012 / 13:02:03 / cg"
+    "Modified: / 19-01-2012 / 10:43:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 tagsBrowserVisibleHolder
@@ -5782,6 +5785,7 @@
     "Created: / 15-01-2012 / 19:43:08 / cg"
 ! !
 
+
 !AbstractFileBrowser methodsFor:'menu actions-tools'!
 
 allFilesInSelectedDirectoriesForWhich:aBlock
@@ -8273,10 +8277,11 @@
 !
 
 hasSubversionSupport
-    ^ ConfigurableFeatures hasSubversionSupport
+    ^ ConfigurableFeatures includesFeature: #SubversionSupport
 
     "Created: / 24-06-2010 / 19:59:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 07-09-2011 / 10:41:19 / cg"
+    "Modified: / 19-01-2012 / 10:43:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 hasSubversionWorkingCopySelected
@@ -9017,9 +9022,9 @@
 !AbstractFileBrowser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractFileBrowser.st,v 1.486 2012-01-18 10:37:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractFileBrowser.st,v 1.487 2012-01-19 10:48:23 vrany Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractFileBrowser.st,v 1.486 2012-01-18 10:37:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractFileBrowser.st,v 1.487 2012-01-19 10:48:23 vrany Exp $'
 ! !