Fix comments in FilterEdit components.

git-svn-id: trunk@32387 -
This commit is contained in:
juha 2011-09-17 15:36:48 +00:00
parent be020b3ccc
commit 1e39ce6cf8
2 changed files with 5 additions and 7 deletions

View File

@ -17,9 +17,8 @@ type
TListFilterEdit = class(TCustomControlFilterEdit)
private
// A control showing the (filtered) data. These are exclusive, only one is used.
fFilteredListbox: TListbox;
fSelectionList: TStringList; // or store/restore the old selections here.
fFilteredListbox: TListbox; // A control showing the (filtered) data.
fSelectionList: TStringList; // Store/restore the old selections here.
// Data supplied by caller through Data property.
fOriginalData: TStringList;
// Data sorted for viewing.

View File

@ -17,10 +17,9 @@ type
TTreeFilterEdit = class(TCustomControlFilterEdit)
private
// A control showing the (filtered) data. These are exclusive, only one is used.
fFilteredTreeview: TTreeview;
fImageIndexDirectory: integer; // Needed if directory structure is shown.
fSelectionList: TStringList; // or store/restore the old selections here.
fFilteredTreeview: TTreeview; // A control showing the (filtered) data.
fImageIndexDirectory: integer; // Needed if directory structure is shown.
fSelectionList: TStringList; // Store/restore the old selections here.
fShowDirHierarchy: Boolean; // Show direcories / files as a tree structure.
// Full filename in node data is needed when showing the directory hierarchy.
// It is stored automatically if the map is populated by MapShortToFullFilename.