libede: renamed _FileType::isFolderType to _FileType::isFolder and _FileType::isFileT...
authorRejean Loyer <rejean.loyer@gmail.com>
Wed, 14 Sep 2011 04:57:36 +0000 (00:57 -0400)
committerRejean Loyer <rejean.loyer@gmail.com>
Wed, 14 Sep 2011 22:54:26 +0000 (18:54 -0400)
libede/src/FileSystemBox.ec

index 4f5d76d..cdd7aa2 100644 (file)
@@ -65,7 +65,6 @@ public enum _FileType
    treeLoader,
    lineNumbers;
 
    treeLoader,
    lineNumbers;
 
-
    /*property char * 
    {
       set
    /*property char * 
    {
       set
@@ -74,12 +73,12 @@ public enum _FileType
       }
    }*/
 
       }
    }*/
 
-   public property bool isFolderType
+   public property bool isFolder
    {
       get { return this >= folder && this <= share; }
    }
 
    {
       get { return this >= folder && this <= share; }
    }
 
-   public property bool isFileType
+   public property bool isFile
    {
       get { return this >= normalFile && this <= opticalMediaImageFile; }
    }
    {
       get { return this >= normalFile && this <= opticalMediaImageFile; }
    }