~robertcarr/mir/client-focus-notifications

« back to all changes in this revision

Viewing changes to src/server/shell/surface_source.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:
39
39
std::shared_ptr<msh::Surface> msh::SurfaceSource::create_surface(
40
40
    shell::SurfaceCreationParameters const& params,
41
41
    frontend::SurfaceId id,
42
 
    std::shared_ptr<events::EventSink> const& sink)
 
42
    std::shared_ptr<mf::EventSink> const& sender)
43
43
{
44
 
    return std::make_shared<Surface>(
45
 
        surface_builder,
46
 
        params,
47
 
        id,
48
 
        sink);
 
44
    return std::make_shared<Surface>(surface_builder, params, id, sender);
49
45
}
50
46