mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-12 22:39:14 +02:00
cody: hide unfinished declare variable
git-svn-id: trunk@30865 -
This commit is contained in:
parent
1c5635529c
commit
918216c796
@ -9,6 +9,10 @@
|
|||||||
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
||||||
</SearchPaths>
|
</SearchPaths>
|
||||||
<Other>
|
<Other>
|
||||||
|
<CompilerMessages>
|
||||||
|
<UseMsgFile Value="True"/>
|
||||||
|
</CompilerMessages>
|
||||||
|
<CustomOptions Value="$(IDEBuildOptions)"/>
|
||||||
<CompilerPath Value="$(CompPath)"/>
|
<CompilerPath Value="$(CompPath)"/>
|
||||||
</Other>
|
</Other>
|
||||||
</CompilerOptions>
|
</CompilerOptions>
|
||||||
@ -51,7 +55,7 @@
|
|||||||
</Item8>
|
</Item8>
|
||||||
<Item9>
|
<Item9>
|
||||||
<Filename Value="codynodeinfodlg.pas"/>
|
<Filename Value="codynodeinfodlg.pas"/>
|
||||||
<UnitName Value="codynodeinfodlg"/>
|
<UnitName Value="CodyNodeInfoDlg"/>
|
||||||
</Item9>
|
</Item9>
|
||||||
</Files>
|
</Files>
|
||||||
<LazDoc Paths="doc"/>
|
<LazDoc Paths="doc"/>
|
||||||
|
@ -97,7 +97,10 @@ begin
|
|||||||
crsDeclareVariable,
|
crsDeclareVariable,
|
||||||
CleanIDEShortCut,CleanIDEShortCut,nil,@ShowDeclareVariableDialog);
|
CleanIDEShortCut,CleanIDEShortCut,nil,@ShowDeclareVariableDialog);
|
||||||
RegisterIDEMenuCommand(SrcEditSubMenuRefactor, 'DeclareVariable',
|
RegisterIDEMenuCommand(SrcEditSubMenuRefactor, 'DeclareVariable',
|
||||||
crsDeclareVariable2, nil, nil, DeclareVariableCommand);
|
crsDeclareVariable2, nil, nil, DeclareVariableCommand)
|
||||||
|
{$IFNDEF EnableCodyDeclareVar}
|
||||||
|
.Visible:=false
|
||||||
|
{$ENDIF};
|
||||||
|
|
||||||
|
|
||||||
// Refactor menu - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// Refactor menu - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
Loading…
Reference in New Issue
Block a user