diff options
author | giulio <giulio@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2008-07-20 21:37:48 +0000 |
---|---|---|
committer | giulio <giulio@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2008-07-20 21:37:48 +0000 |
commit | 798d2714b19cb9f3dcccd6766953476203b6350c (patch) | |
tree | c05188fda374dc8e9b9970b05c98e28ea7c5e89b /ide/fpsymbol.pas | |
parent | 8da6e407a24bbe4d46c0ed1bda71c8a22736e602 (diff) | |
download | fpc-798d2714b19cb9f3dcccd6766953476203b6350c.tar.gz |
IDE: Cleaned ifdefs related to Turbo Pascal and FPC 1.x
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@11423 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'ide/fpsymbol.pas')
-rw-r--r-- | ide/fpsymbol.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ide/fpsymbol.pas b/ide/fpsymbol.pas index da2690f70b..a8ad1c7fd8 100644 --- a/ide/fpsymbol.pas +++ b/ide/fpsymbol.pas @@ -284,7 +284,7 @@ const { Symbol browser tabs } label_browsertab_unit = 'U'; procedure CloseAllBrowsers; - procedure SendCloseIfBrowser(P: PView); {$ifndef FPC}far;{$endif} + procedure SendCloseIfBrowser(P: PView); begin if assigned(P) and ((TypeOf(P^)=TypeOf(TBrowserWindow)) or @@ -736,7 +736,7 @@ end; function LastBrowserWindow: PBrowserWindow; var BW: PBrowserWindow; -procedure IsBW(P: PView); {$ifndef FPC}far;{$endif} +procedure IsBW(P: PView); begin if (P^.HelpCtx=hcBrowserWindow) then BW:=pointer(P); |