summaryrefslogtreecommitdiff
path: root/p2pvr/lib/containerIterator.h
diff options
context:
space:
mode:
Diffstat (limited to 'p2pvr/lib/containerIterator.h')
-rw-r--r--p2pvr/lib/containerIterator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/p2pvr/lib/containerIterator.h b/p2pvr/lib/containerIterator.h
index 03af88c..dac2639 100644
--- a/p2pvr/lib/containerIterator.h
+++ b/p2pvr/lib/containerIterator.h
@@ -7,10 +7,10 @@
template <typename T>
class ContainerIterator : public IHaveSubTasks {
public:
- ContainerIterator(const T * con) :
+ ContainerIterator(const T * con, const SelectedColumns & sc) :
SourceObject(__PRETTY_FUNCTION__),
IHaveSubTasks(NULL),
- binder(boost::bind(&BindColumns<typename T::value_type>, _1, _2)),
+ binder(boost::bind(&BindColumns<typename T::value_type>, _1, sc, _2)),
container(con)
{
}