From: Rejean Loyer Date: Wed, 14 Sep 2011 04:57:36 +0000 (-0400) Subject: libede: renamed _FileType::isFolderType to _FileType::isFolder and _FileType::isFileT... X-Git-Url: http://ecere.com/cgi-bin/gitweb.cgi?p=ede;a=commitdiff_plain;h=ce190f57ece361a88d3aa4827041b8136863a385;ds=sidebyside libede: renamed _FileType::isFolderType to _FileType::isFolder and _FileType::isFileType to _FileType::isFile --- diff --git a/libede/src/FileSystemBox.ec b/libede/src/FileSystemBox.ec index 4f5d76d..cdd7aa2 100644 --- a/libede/src/FileSystemBox.ec +++ b/libede/src/FileSystemBox.ec @@ -65,7 +65,6 @@ public enum _FileType treeLoader, lineNumbers; - /*property char * { set @@ -74,12 +73,12 @@ public enum _FileType } }*/ - public property bool isFolderType + public property bool isFolder { get { return this >= folder && this <= share; } } - public property bool isFileType + public property bool isFile { get { return this >= normalFile && this <= opticalMediaImageFile; } }