summaryrefslogtreecommitdiff
path: root/ui/custom_grid.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/custom_grid.h')
-rw-r--r--ui/custom_grid.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/custom_grid.h b/ui/custom_grid.h
index 6381c8c0..c2e653ef 100644
--- a/ui/custom_grid.h
+++ b/ui/custom_grid.h
@@ -31,8 +31,8 @@ void refresh(Grid& gridLeft, Grid& gridCenter, Grid& gridRight);
//mark rows selected in navigation/compressed tree and navigate to leading object
void setNavigationMarker(Grid& gridLeft,
- std::vector<const HierarchyObject*>&& markedFiles, //mark files/symlinks directly within a container
- std::vector<const HierarchyObject*>&& markedContainer); //mark full container including child-objects
+ hash_set<const FileSystemObject*>&& markedFilesAndLinks,//mark files/symlinks directly within a container
+ hash_set<const HierarchyObject*>&& markedContainer); //mark full container including child-objects
}
wxBitmap getSyncOpImage(SyncOperation syncOp);
bgstack15