summaryrefslogtreecommitdiff
path: root/ui/custom_grid.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:24:09 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:24:09 +0200
commit110fc5dee14fc7988f631a158e50d283446aba7a (patch)
tree7c19dfd3bdb8c4636409ec80a38c70499ac006db /ui/custom_grid.h
parent5.14 (diff)
downloadFreeFileSync-110fc5dee14fc7988f631a158e50d283446aba7a.tar.gz
FreeFileSync-110fc5dee14fc7988f631a158e50d283446aba7a.tar.bz2
FreeFileSync-110fc5dee14fc7988f631a158e50d283446aba7a.zip
5.15
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