From ce190f57ece361a88d3aa4827041b8136863a385 Mon Sep 17 00:00:00 2001 From: Rejean Loyer Date: Wed, 14 Sep 2011 00:57:36 -0400 Subject: [PATCH] libede: renamed _FileType::isFolderType to _FileType::isFolder and _FileType::isFileType to _FileType::isFile --- libede/src/FileSystemBox.ec | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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; } } -- 1.8.3.1