mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 09:59:01 +02:00
Ide/Debugger Options: Move "Language Exceptions" from Environment to Project. They already were stored with the project. (No build mode support)
git-svn-id: trunk@61608 -
This commit is contained in:
parent
a13d2afaa0
commit
2b676c1372
@ -200,7 +200,6 @@ const
|
||||
DbgOptionsGeneral = 100;
|
||||
DbgOptionsClass = 150;
|
||||
DbgOptionsEventLog = 200;
|
||||
DbgOptionsLanguageExceptions = 300;
|
||||
DbgOptionsSignals = 400;
|
||||
|
||||
GroupHelp = 500;
|
||||
@ -216,6 +215,7 @@ const
|
||||
ProjectOptionsResources = 550;
|
||||
ProjectOptionsI18N = 600;
|
||||
ProjectOptionsMisc = 700;
|
||||
DbgOptionsLanguageExceptions = 800;
|
||||
|
||||
GroupPackage = 200100;
|
||||
PackageOptionsUsage = 100;
|
||||
|
@ -31,7 +31,7 @@ uses
|
||||
// IdeIntf
|
||||
IDEImagesIntf, IDEOptionsIntf, IDEOptEditorIntf,
|
||||
// IDE
|
||||
LazarusIDEStrConsts, Debugger, BaseDebugManager;
|
||||
LazarusIDEStrConsts, Debugger, BaseDebugManager, Project;
|
||||
|
||||
type
|
||||
|
||||
@ -200,10 +200,10 @@ end;
|
||||
|
||||
class function TDebuggerLanguageExceptionsOptions.SupportedOptionsClass: TAbstractIDEOptionsClass;
|
||||
begin
|
||||
Result := TDebuggerOptions;
|
||||
Result := TProjectIDEOptions;
|
||||
end;
|
||||
|
||||
initialization
|
||||
RegisterIDEOptionsEditor(GroupDebugger, TDebuggerLanguageExceptionsOptions, DbgOptionsLanguageExceptions);
|
||||
RegisterIDEOptionsEditor(GroupProject, TDebuggerLanguageExceptionsOptions, DbgOptionsLanguageExceptions);
|
||||
end.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user