Browse Source

* Fixed typo (t->s)

git-svn-id: trunk@27501 -
michael 11 years ago
parent
commit
59a9a595c5
1 changed files with 1 additions and 2 deletions
  1. 1 2
      packages/fcl-base/src/fpmimetypes.pp

+ 1 - 2
packages/fcl-base/src/fpmimetypes.pp

@@ -28,13 +28,12 @@ Type
   TMimeType = Class(TObject)
   private
     FExtensions: String;
-    FExtentions: String;
     FMimeType: String;
   Public
     Constructor Create(Const AMimeType,AExtensions : String);
     Procedure MergeExtensions(AExtensions : String);
     Property MimeType : String Read FMimeType Write FMimeType;
-    Property Extensions : String Read FExtensions Write FExtentions;
+    Property Extensions : String Read FExtensions Write FExtensions;
   end;
 
   { TFPMimeTypes }