Skip to content

Commit

Permalink
Separated Spell checker GUI and Core Library
Browse files Browse the repository at this point in the history
  • Loading branch information
mugli committed Oct 14, 2010
1 parent c57eb64 commit 28ae228
Show file tree
Hide file tree
Showing 16 changed files with 895 additions and 387 deletions.
11 changes: 9 additions & 2 deletions Keyboard and Spell checker/Classes/clsFileVersion.pas
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,21 @@

Implementation

Uses
uFileFolderHandling;

{===============================================================================}

Constructor TFileVersion.Create(Const AFileName: String = '');
Begin
Inherited Create;

If AFileName = '' Then
FFileName := ExtractFilePath(Application.ExeName) +
ExtractFileName(Application.ExeName)
{$IFNDEF SpellCheckerDll}
FFileName := Application.ExeName
{$ELSE}
FFileName := GetDllFullPath
{$ENDIF}
Else
FFileName := AFileName;

Expand Down Expand Up @@ -183,3 +189,4 @@
{===============================================================================}

End.

Loading

0 comments on commit 28ae228

Please sign in to comment.