summaryrefslogtreecommitdiff
path: root/src/generic/util/dynamic_set_transform.h
diff options
context:
space:
mode:
authorDaniel Burrows <dburrows@debian.org>2010-05-13 20:25:01 -0700
committerDaniel Burrows <dburrows@debian.org>2010-05-13 20:25:01 -0700
commitdbccc316eabe236dd52844a8f3acad52c79f07cd (patch)
treed9d2e25c64d9c1788beb8b453447f069fee94fe9 /src/generic/util/dynamic_set_transform.h
parent0f99c8d7d931e5716c4fda4ccef9accd8609cdf7 (diff)
downloadaptitude-dbccc316eabe236dd52844a8f3acad52c79f07cd.tar.gz
Write a fully functional alternate initialization path.
This will be the foundation for the new top-level harness code. Eventually the old code will go away, but I don't want to disrupt it while I'm working on the new stuff. To activate the new code, pass --new-gui on the command-line.
Diffstat (limited to 'src/generic/util/dynamic_set_transform.h')
-rw-r--r--src/generic/util/dynamic_set_transform.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/generic/util/dynamic_set_transform.h b/src/generic/util/dynamic_set_transform.h
index 148f4cf7..19211fc9 100644
--- a/src/generic/util/dynamic_set_transform.h
+++ b/src/generic/util/dynamic_set_transform.h
@@ -47,8 +47,8 @@ namespace aptitude
boost::shared_ptr<dynamic_set<From> > wrapped_set;
boost::function<To (From)> f;
- sigc::signal<To> signal_inserted;
- sigc::signal<To> signal_removed;
+ sigc::signal<void, To> signal_inserted;
+ sigc::signal<void, To> signal_removed;
void handle_inserted(const From &from);
void handle_removed(const From &from);