IDE: hide ClientWIdht/Height only for TControl descendants

git-svn-id: trunk@13964 -
This commit is contained in:
mattias 2008-02-03 10:59:27 +00:00
parent b71761338c
commit 968f7479a7

View File

@ -6148,9 +6148,9 @@ begin
RegisterPropertyEditor(DummyClassForPropTypes.PTypeInfos('TAnchorSide'),
TControl, 'AnchorSideBottom', THiddenPropertyEditor);
RegisterPropertyEditor(DummyClassForPropTypes.PTypeInfos('longint'),
nil, 'ClientWidth', THiddenPropertyEditor);
TControl, 'ClientWidth', THiddenPropertyEditor);
RegisterPropertyEditor(DummyClassForPropTypes.PTypeInfos('longint'),
nil, 'ClientHeight', THiddenPropertyEditor);
TControl, 'ClientHeight', THiddenPropertyEditor);
RegisterPropertyEditor(DummyClassForPropTypes.PTypeInfos('AnsiString'),
TCustomPropertyStorage, 'Filename', TFileNamePropertyEditor);
end;