Browse Source

* Fix wrong raise statement

Michaël Van Canneyt 1 year ago
parent
commit
258211e038
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils/unicode/gbpparser.lpr

+ 1 - 1
utils/unicode/gbpparser.lpr

@@ -102,7 +102,7 @@ begin
     'E_Base_GAZ':
     'E_Base_GAZ':
       Result := gbpE_Base_GAZ;
       Result := gbpE_Base_GAZ;
     else
     else
-      raise EArgumentException('Unknown grapheme break property: ''' + S + '''');
+      raise EArgumentException.Create('Unknown grapheme break property: ''' + S + '''');
   end;
   end;
 end;
 end;