~robertcarr/mir/client-focus-notifications

« back to all changes in this revision

Viewing changes to src/server/shell/organising_surface_factory.cpp

  • Committer: Robert Carr
  • Date: 2013-08-01 22:01:20 UTC
  • mfrom: (706.2.208 trunk)
  • Revision ID: robert.carr@canonical.com-20130801220120-6m230b3g6x0xflzd
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
std::shared_ptr<msh::Surface> msh::OrganisingSurfaceFactory::create_surface(
38
38
    shell::SurfaceCreationParameters const& params,
39
39
    frontend::SurfaceId id,
40
 
    std::shared_ptr<events::EventSink> const& sink)
 
40
    std::shared_ptr<mf::EventSink> const& sender)
41
41
{
42
42
    auto placed_params = placement_strategy->place(params);
43
43
 
44
 
    return underlying_factory->create_surface(placed_params, id, sink);
 
44
    return underlying_factory->create_surface(placed_params, id, sender);
45
45
}
46
46