mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 10:59:29 +02:00
IDE: Cleanup.
git-svn-id: trunk@58792 -
This commit is contained in:
parent
a16d3e7cf9
commit
c8db4ff99b
@ -865,13 +865,7 @@ resourcestring
|
||||
lisFileDoesNotLookLikeATextFileOpenItAnyway = 'File "%s"'
|
||||
+'%sdoes not look like a text file.'
|
||||
+'%sOpen it anyway?';
|
||||
lisUnableToCreateBackupDirectory = 'Unable to create backup directory "%s".';
|
||||
lisSourceAndDestinationAreTheSame = 'Source and Destination are the same:%s%s';
|
||||
lisInvalidCommand = 'Invalid command';
|
||||
lisTheCommandAfterIsNotExecutable = 'The command after "%s" is not executable.';
|
||||
lisCommandAfterInvalid = 'Command after invalid';
|
||||
lisTheCommandAfterPublishingIsInvalid = 'The command after publishing is invalid:%s"%s"';
|
||||
lisCommandAfterPublishingModule = 'Command after publishing module';
|
||||
lisUnableToAddToProjectBecauseThereIsAlreadyAUnitWith = 'Unable to add %s '
|
||||
+'to project, because there is already a unit with the same name in the Project.';
|
||||
lisAddToProject = 'Add %s to project?';
|
||||
@ -1271,7 +1265,6 @@ resourcestring
|
||||
// Publish project / package
|
||||
lisDestinationDirectory = 'Destination directory';
|
||||
lisChooseDirectory = 'Choose directory';
|
||||
//lisCommandAfter = 'Command after';
|
||||
lisCompress = 'Compress';
|
||||
lisCompressHint = 'The resulting directory will be compressed into a ZIP file.';
|
||||
lisPublishModuleNote = 'Files belonging to project / package will be included automatically.';
|
||||
@ -1281,12 +1274,7 @@ resourcestring
|
||||
+'character, a * stands for anything, a ? stands for any character, and '
|
||||
+'comma and semicolon separates alternatives. For example: Simple '
|
||||
+'syntax *.pas;*.pp corresponds to ^(.*\.pas|.*\.pp)$';
|
||||
//lisUseExcludeFilter = 'Use exclude filter';
|
||||
//lisProjectInformation = 'Project information';
|
||||
//lisSaveEditorInfoOfNonProjectFiles = 'Save editor info of non project files';
|
||||
//lisSaveInfoOfClosedEditorFiles = 'Save info of closed editor files';
|
||||
lisUseFiltersForExtraFiles = 'Use filters for extra files';
|
||||
//lisUseIncludeFilter = 'Use include filter';
|
||||
lisIncludeFilter = 'Include filter';
|
||||
lisExcludeFilter = 'Exclude filter';
|
||||
lisInvalidPublishingDirectory = 'Invalid publishing Directory';
|
||||
|
10
ide/main.pp
10
ide/main.pp
@ -878,8 +878,6 @@ type
|
||||
function FindSourceFile(const AFilename, BaseDirectory: string;
|
||||
Flags: TFindSourceFlags): string; override;
|
||||
function DoCheckFilesOnDisk(Instantaneous: boolean = false): TModalResult; override;
|
||||
//function DoPublishModule(Options: TPublishModuleOptions;
|
||||
// const SrcDirectory, DestDirectory: string): TModalResult; override;
|
||||
procedure PrepareBuildTarget(Quiet: boolean;
|
||||
ScanFPCSrc: TScanModeFPCSources = smsfsBackground); override;
|
||||
procedure AbortBuild; override;
|
||||
@ -8351,13 +8349,7 @@ function TMainIDE.DoCheckFilesOnDisk(Instantaneous: boolean): TModalResult;
|
||||
begin
|
||||
Result:=SourceFileMgr.CheckFilesOnDisk(Instantaneous);
|
||||
end;
|
||||
{
|
||||
function TMainIDE.DoPublishModule(Options: TPublishModuleOptions;
|
||||
const SrcDirectory, DestDirectory: string): TModalResult;
|
||||
begin
|
||||
Result:=SourceFileMgr.PublishModule(Options, SrcDirectory, DestDirectory);
|
||||
end;
|
||||
}
|
||||
|
||||
procedure TMainIDE.PrepareBuildTarget(Quiet: boolean; ScanFPCSrc: TScanModeFPCSources);
|
||||
begin
|
||||
MainBuildBoss.SetBuildTargetProject1(Quiet,ScanFPCSrc);
|
||||
|
@ -154,9 +154,6 @@ type
|
||||
function DoExampleManager: TModalResult; virtual; abstract;
|
||||
function DoBuildLazarus(Flags: TBuildLazarusFlags): TModalResult; virtual; abstract;
|
||||
function DoSaveForBuild(AReason: TCompileReason): TModalResult; virtual; abstract;
|
||||
//function DoPublishModule(Options: TPublishModuleOptions;
|
||||
// const SrcDirectory, DestDirectory: string
|
||||
// ): TModalResult; virtual; abstract;
|
||||
function DoFixupComponentReferences(RootComponent: TComponent;
|
||||
OpenFlags: TOpenFlags): TModalResult; virtual; abstract;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user