summaryrefslogtreecommitdiff
path: root/ide/fpsymbol.pas
diff options
context:
space:
mode:
authorgiulio <giulio@3ad0048d-3df7-0310-abae-a5850022a9f2>2008-07-20 21:37:48 +0000
committergiulio <giulio@3ad0048d-3df7-0310-abae-a5850022a9f2>2008-07-20 21:37:48 +0000
commit798d2714b19cb9f3dcccd6766953476203b6350c (patch)
treec05188fda374dc8e9b9970b05c98e28ea7c5e89b /ide/fpsymbol.pas
parent8da6e407a24bbe4d46c0ed1bda71c8a22736e602 (diff)
downloadfpc-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.pas4
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);