~3v1n0/unity/overlay-border-scale

« back to all changes in this revision

Viewing changes to UnityCore/Filters.cpp

  • Committer: Daniel van Vugt
  • Date: 2012-03-14 06:24:18 UTC
  • mfrom: (2108 unity)
  • mto: This revision was merged to the branch mainline in revision 2146.
  • Revision ID: daniel.van.vugt@canonical.com-20120314062418-nprucpbr0m7qky5e
MergedĀ latestĀ lp:unity

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
  row_removed.connect(sigc::mem_fun(this, &Filters::OnRowRemoved));
57
57
}
58
58
 
 
59
Filters::Filters(ModelType model_type)
 
60
 : Model<FilterAdaptor>::Model(model_type)
 
61
{
 
62
  row_added.connect(sigc::mem_fun(this, &Filters::OnRowAdded));
 
63
  row_changed.connect(sigc::mem_fun(this, &Filters::OnRowChanged));
 
64
  row_removed.connect(sigc::mem_fun(this, &Filters::OnRowRemoved));
 
65
}
 
66
 
59
67
Filters::~Filters()
60
68
{}
61
69