moved compiler_buildvar_options.pas to ide/frames

git-svn-id: trunk@23373 -
This commit is contained in:
mattias 2010-01-04 19:31:23 +00:00
parent 294d55104b
commit 33729ede58
5 changed files with 7 additions and 6 deletions

6
.gitattributes vendored
View File

@ -3393,6 +3393,9 @@ ide/frames/codetools_space_options.pas svneol=native#text/pascal
ide/frames/codetools_wordpolicy_options.lfm svneol=native#text/plain
ide/frames/codetools_wordpolicy_options.lrs svneol=native#text/pascal
ide/frames/codetools_wordpolicy_options.pas svneol=native#text/pascal
ide/frames/compiler_buildvar_options.lfm svneol=native#text/plain
ide/frames/compiler_buildvar_options.lrs svneol=native#text/pascal
ide/frames/compiler_buildvar_options.pas svneol=native#text/plain
ide/frames/compiler_codegen_options.lfm svneol=native#text/plain
ide/frames/compiler_codegen_options.lrs svneol=native#text/pascal
ide/frames/compiler_codegen_options.pas svneol=native#text/pascal
@ -5133,9 +5136,6 @@ packager/addtopackagedlg.lrs svneol=native#text/pascal
packager/addtopackagedlg.pas svneol=native#text/pascal
packager/basepkgmanager.pas svneol=native#text/pascal
packager/brokendependenciesdlg.pas svneol=native#text/pascal
packager/frames/compiler_buildvar_options.lfm svneol=native#text/plain
packager/frames/compiler_buildvar_options.lrs svneol=native#text/pascal
packager/frames/compiler_buildvar_options.pas svneol=native#text/plain
packager/globallinks/README.txt svneol=native#text/plain
packager/globallinks/aggpaslcl-1.lpl svneol=native#text/plain
packager/globallinks/appforms-0.lpl svneol=native#text/plain

View File

@ -263,7 +263,7 @@ type
procedure SetupVerbosityTab(Page: integer);
procedure SetupConfigMsgTab(Page: integer);
procedure SetupOtherTab(Page: integer);
procedure SetupConditionalTab(Page: integer);
procedure SetupConditionalsTab(Page: integer);
procedure SetupInheritedTab(Page: integer);
procedure SetupCompilationTab(Page: integer);
procedure SetupButtonBar;
@ -448,7 +448,7 @@ begin
inc(Page);
SetupOtherTab(Page);
inc(Page);
SetupConditionalTab(Page);
SetupConditionalsTab(Page);
inc(Page);
SetupInheritedTab(Page);
inc(Page);
@ -1518,7 +1518,8 @@ end;
procedure TfrmCompilerOptions.SetupConditionalTab(Page: integer);
begin
MainNoteBook.Page[Page].Caption:=dlgCOConditionals;
ConditionalPage:=MainNoteBook.Page[Page];
ConditionalPage.Caption:=dlgCOConditionals;
{$IFDEF EnableBuildModes}
CategoryTreeView.Items.AddObject(nil,MainNoteBook.Page[Page].Caption,MainNoteBook.Page[Page]);
{$ENDIF}